logstash-input-snmp 0.1.0.beta1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
 - data/CHANGELOG.md +3 -0
 - data/CONTRIBUTORS +10 -0
 - data/DEVELOPER.md +2 -0
 - data/Gemfile +11 -0
 - data/LICENSE +11 -0
 - data/README.md +86 -0
 - data/lib/logstash-input-snmp_jars.rb +4 -0
 - data/lib/logstash/inputs/snmp.rb +158 -0
 - data/lib/logstash/inputs/snmp/client.rb +135 -0
 - data/lib/logstash/inputs/snmp/mib.rb +159 -0
 - data/logstash-input-snmp.gemspec +27 -0
 - data/spec/fixtures/RFC1213-MIB.dic +3445 -0
 - data/spec/fixtures/collision.dic +25 -0
 - data/spec/inputs/snmp/mib_spec.rb +54 -0
 - data/spec/inputs/snmp_spec.rb +85 -0
 - data/vendor/jar-dependencies/org/snmp4j/snmp4j/2.5.11/snmp4j-2.5.11.jar +0 -0
 - metadata +150 -0
 
| 
         @@ -0,0 +1,27 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            Gem::Specification.new do |s|
         
     | 
| 
      
 2 
     | 
    
         
            +
              s.name          = 'logstash-input-snmp'
         
     | 
| 
      
 3 
     | 
    
         
            +
              s.version       = '0.1.0.beta1'
         
     | 
| 
      
 4 
     | 
    
         
            +
              s.licenses      = ['Apache-2.0']
         
     | 
| 
      
 5 
     | 
    
         
            +
              s.summary       = "SNMP input plugin"
         
     | 
| 
      
 6 
     | 
    
         
            +
              s.description   = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
         
     | 
| 
      
 7 
     | 
    
         
            +
              s.authors         = ['Elasticsearch']
         
     | 
| 
      
 8 
     | 
    
         
            +
              s.email           = 'info@elastic.co'
         
     | 
| 
      
 9 
     | 
    
         
            +
              s.homepage        = "http://www.elastic.co/guide/en/logstash/current/index.html"
         
     | 
| 
      
 10 
     | 
    
         
            +
              s.require_paths = ['lib', 'vendor/jar-dependencies']
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
              # Files
         
     | 
| 
      
 13 
     | 
    
         
            +
              s.files = Dir["lib/**/*","spec/**/*","*.gemspec","*.md","CONTRIBUTORS","Gemfile","LICENSE","NOTICE.TXT", "vendor/jar-dependencies/**/*.jar", "vendor/jar-dependencies/**/*.rb", "VERSION", "docs/**/*"]
         
     | 
| 
      
 14 
     | 
    
         
            +
             
     | 
| 
      
 15 
     | 
    
         
            +
              # Tests
         
     | 
| 
      
 16 
     | 
    
         
            +
              s.test_files = s.files.grep(%r{^(test|spec|features)/})
         
     | 
| 
      
 17 
     | 
    
         
            +
             
     | 
| 
      
 18 
     | 
    
         
            +
              # Special flag to let us know this is actually a logstash plugin
         
     | 
| 
      
 19 
     | 
    
         
            +
              s.metadata = { 'logstash_plugin' => 'true', 'logstash_group' => 'input'}
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
              # Gem dependencies
         
     | 
| 
      
 22 
     | 
    
         
            +
              s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"
         
     | 
| 
      
 23 
     | 
    
         
            +
              s.add_runtime_dependency 'stud', '>= 0.0.22', '< 0.1.0'
         
     | 
| 
      
 24 
     | 
    
         
            +
              s.add_runtime_dependency 'logstash-codec-plain'
         
     | 
| 
      
 25 
     | 
    
         
            +
              s.add_development_dependency 'logstash-devutils'
         
     | 
| 
      
 26 
     | 
    
         
            +
              s.add_development_dependency 'rspec-wait'
         
     | 
| 
      
 27 
     | 
    
         
            +
            end
         
     | 
| 
         @@ -0,0 +1,3445 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            # python version 1.0						DO NOT EDIT
         
     | 
| 
      
 2 
     | 
    
         
            +
            #
         
     | 
| 
      
 3 
     | 
    
         
            +
            # This python file has been generated by smidump version 0.5.0:
         
     | 
| 
      
 4 
     | 
    
         
            +
            #
         
     | 
| 
      
 5 
     | 
    
         
            +
            #   smidump -f python RFC1213-MIB
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            FILENAME = "tmp/RFC1213-MIB.txt"
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            MIB = {
         
     | 
| 
      
 10 
     | 
    
         
            +
                "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 11 
     | 
    
         
            +
             
     | 
| 
      
 12 
     | 
    
         
            +
                "RFC1213-MIB" : {
         
     | 
| 
      
 13 
     | 
    
         
            +
                    "nodetype" : "module",
         
     | 
| 
      
 14 
     | 
    
         
            +
                    "language" : "SMIv1",
         
     | 
| 
      
 15 
     | 
    
         
            +
                },
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
                "imports" : (
         
     | 
| 
      
 18 
     | 
    
         
            +
                    {"module" : "RFC1155-SMI", "name" : "mgmt"},
         
     | 
| 
      
 19 
     | 
    
         
            +
                    {"module" : "RFC1155-SMI", "name" : "NetworkAddress"},
         
     | 
| 
      
 20 
     | 
    
         
            +
                    {"module" : "RFC1155-SMI", "name" : "IpAddress"},
         
     | 
| 
      
 21 
     | 
    
         
            +
                    {"module" : "RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 22 
     | 
    
         
            +
                    {"module" : "RFC1155-SMI", "name" : "Gauge"},
         
     | 
| 
      
 23 
     | 
    
         
            +
                    {"module" : "RFC1155-SMI", "name" : "TimeTicks"},
         
     | 
| 
      
 24 
     | 
    
         
            +
                    {"module" : "RFC-1212", "name" : "OBJECT-TYPE"},
         
     | 
| 
      
 25 
     | 
    
         
            +
                ),
         
     | 
| 
      
 26 
     | 
    
         
            +
             
     | 
| 
      
 27 
     | 
    
         
            +
                "typedefs" : {
         
     | 
| 
      
 28 
     | 
    
         
            +
                    "DisplayString" : {
         
     | 
| 
      
 29 
     | 
    
         
            +
                        "basetype" : "OctetString",
         
     | 
| 
      
 30 
     | 
    
         
            +
                    },
         
     | 
| 
      
 31 
     | 
    
         
            +
                    "PhysAddress" : {
         
     | 
| 
      
 32 
     | 
    
         
            +
                        "basetype" : "OctetString",
         
     | 
| 
      
 33 
     | 
    
         
            +
                    },
         
     | 
| 
      
 34 
     | 
    
         
            +
                }, # typedefs
         
     | 
| 
      
 35 
     | 
    
         
            +
             
     | 
| 
      
 36 
     | 
    
         
            +
                "nodes" : {
         
     | 
| 
      
 37 
     | 
    
         
            +
                    "mib-2" : {
         
     | 
| 
      
 38 
     | 
    
         
            +
                        "nodetype" : "node",
         
     | 
| 
      
 39 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 40 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1",
         
     | 
| 
      
 41 
     | 
    
         
            +
                    }, # node
         
     | 
| 
      
 42 
     | 
    
         
            +
                    "system" : {
         
     | 
| 
      
 43 
     | 
    
         
            +
                        "nodetype" : "node",
         
     | 
| 
      
 44 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 45 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.1",
         
     | 
| 
      
 46 
     | 
    
         
            +
                    }, # node
         
     | 
| 
      
 47 
     | 
    
         
            +
                    "sysDescr" : {
         
     | 
| 
      
 48 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 49 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 50 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.1.1",
         
     | 
| 
      
 51 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 52 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 53 
     | 
    
         
            +
                            "type" :                 {
         
     | 
| 
      
 54 
     | 
    
         
            +
                                "basetype" : "OctetString",
         
     | 
| 
      
 55 
     | 
    
         
            +
                                "parent module" : {
         
     | 
| 
      
 56 
     | 
    
         
            +
                                    "name" : "RFC1213-MIB",
         
     | 
| 
      
 57 
     | 
    
         
            +
                                    "type" : "DisplayString",
         
     | 
| 
      
 58 
     | 
    
         
            +
                                },
         
     | 
| 
      
 59 
     | 
    
         
            +
                                "ranges" : [
         
     | 
| 
      
 60 
     | 
    
         
            +
                                {
         
     | 
| 
      
 61 
     | 
    
         
            +
                                    "min" : "0",
         
     | 
| 
      
 62 
     | 
    
         
            +
                                    "max" : "255"
         
     | 
| 
      
 63 
     | 
    
         
            +
                                },
         
     | 
| 
      
 64 
     | 
    
         
            +
                                ],
         
     | 
| 
      
 65 
     | 
    
         
            +
                                "range" : {
         
     | 
| 
      
 66 
     | 
    
         
            +
                                    "min" : "0",
         
     | 
| 
      
 67 
     | 
    
         
            +
                                    "max" : "255"
         
     | 
| 
      
 68 
     | 
    
         
            +
                                },
         
     | 
| 
      
 69 
     | 
    
         
            +
                            },
         
     | 
| 
      
 70 
     | 
    
         
            +
                        },
         
     | 
| 
      
 71 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 72 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 73 
     | 
    
         
            +
                            """A textual description of the entity.  This value
         
     | 
| 
      
 74 
     | 
    
         
            +
            should include the full name and version
         
     | 
| 
      
 75 
     | 
    
         
            +
            identification of the system's hardware type,
         
     | 
| 
      
 76 
     | 
    
         
            +
            software operating-system, and networking
         
     | 
| 
      
 77 
     | 
    
         
            +
            software.  It is mandatory that this only contain
         
     | 
| 
      
 78 
     | 
    
         
            +
            printable ASCII characters.""",
         
     | 
| 
      
 79 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 80 
     | 
    
         
            +
                    "sysObjectID" : {
         
     | 
| 
      
 81 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 82 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 83 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.1.2",
         
     | 
| 
      
 84 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 85 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 86 
     | 
    
         
            +
                            "type" : { "module" :"", "name" : "ObjectIdentifier"},
         
     | 
| 
      
 87 
     | 
    
         
            +
                        },
         
     | 
| 
      
 88 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 89 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 90 
     | 
    
         
            +
                            """The vendor's authoritative identification of the
         
     | 
| 
      
 91 
     | 
    
         
            +
            network management subsystem contained in the
         
     | 
| 
      
 92 
     | 
    
         
            +
            entity.  This value is allocated within the SMI
         
     | 
| 
      
 93 
     | 
    
         
            +
            enterprises subtree (1.3.6.1.4.1) and provides an
         
     | 
| 
      
 94 
     | 
    
         
            +
            easy and unambiguous means for determining `what
         
     | 
| 
      
 95 
     | 
    
         
            +
            kind of box' is being managed.  For example, if
         
     | 
| 
      
 96 
     | 
    
         
            +
            vendor `Flintstones, Inc.' was assigned the
         
     | 
| 
      
 97 
     | 
    
         
            +
            subtree 1.3.6.1.4.1.4242, it could assign the
         
     | 
| 
      
 98 
     | 
    
         
            +
            identifier 1.3.6.1.4.1.4242.1.1 to its `Fred
         
     | 
| 
      
 99 
     | 
    
         
            +
            Router'.""",
         
     | 
| 
      
 100 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 101 
     | 
    
         
            +
                    "sysUpTime" : {
         
     | 
| 
      
 102 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 103 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 104 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.1.3",
         
     | 
| 
      
 105 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 106 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 107 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "TimeTicks"},
         
     | 
| 
      
 108 
     | 
    
         
            +
                        },
         
     | 
| 
      
 109 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 110 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 111 
     | 
    
         
            +
                            """The time (in hundredths of a second) since the
         
     | 
| 
      
 112 
     | 
    
         
            +
            network management portion of the system was last
         
     | 
| 
      
 113 
     | 
    
         
            +
            re-initialized.""",
         
     | 
| 
      
 114 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 115 
     | 
    
         
            +
                    "sysContact" : {
         
     | 
| 
      
 116 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 117 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 118 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.1.4",
         
     | 
| 
      
 119 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 120 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 121 
     | 
    
         
            +
                            "type" :                 {
         
     | 
| 
      
 122 
     | 
    
         
            +
                                "basetype" : "OctetString",
         
     | 
| 
      
 123 
     | 
    
         
            +
                                "parent module" : {
         
     | 
| 
      
 124 
     | 
    
         
            +
                                    "name" : "RFC1213-MIB",
         
     | 
| 
      
 125 
     | 
    
         
            +
                                    "type" : "DisplayString",
         
     | 
| 
      
 126 
     | 
    
         
            +
                                },
         
     | 
| 
      
 127 
     | 
    
         
            +
                                "ranges" : [
         
     | 
| 
      
 128 
     | 
    
         
            +
                                {
         
     | 
| 
      
 129 
     | 
    
         
            +
                                    "min" : "0",
         
     | 
| 
      
 130 
     | 
    
         
            +
                                    "max" : "255"
         
     | 
| 
      
 131 
     | 
    
         
            +
                                },
         
     | 
| 
      
 132 
     | 
    
         
            +
                                ],
         
     | 
| 
      
 133 
     | 
    
         
            +
                                "range" : {
         
     | 
| 
      
 134 
     | 
    
         
            +
                                    "min" : "0",
         
     | 
| 
      
 135 
     | 
    
         
            +
                                    "max" : "255"
         
     | 
| 
      
 136 
     | 
    
         
            +
                                },
         
     | 
| 
      
 137 
     | 
    
         
            +
                            },
         
     | 
| 
      
 138 
     | 
    
         
            +
                        },
         
     | 
| 
      
 139 
     | 
    
         
            +
                        "access" : "readwrite",
         
     | 
| 
      
 140 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 141 
     | 
    
         
            +
                            """The textual identification of the contact person
         
     | 
| 
      
 142 
     | 
    
         
            +
            for this managed node, together with information
         
     | 
| 
      
 143 
     | 
    
         
            +
            on how to contact this person.""",
         
     | 
| 
      
 144 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 145 
     | 
    
         
            +
                    "sysName" : {
         
     | 
| 
      
 146 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 147 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 148 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.1.5",
         
     | 
| 
      
 149 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 150 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 151 
     | 
    
         
            +
                            "type" :                 {
         
     | 
| 
      
 152 
     | 
    
         
            +
                                "basetype" : "OctetString",
         
     | 
| 
      
 153 
     | 
    
         
            +
                                "parent module" : {
         
     | 
| 
      
 154 
     | 
    
         
            +
                                    "name" : "RFC1213-MIB",
         
     | 
| 
      
 155 
     | 
    
         
            +
                                    "type" : "DisplayString",
         
     | 
| 
      
 156 
     | 
    
         
            +
                                },
         
     | 
| 
      
 157 
     | 
    
         
            +
                                "ranges" : [
         
     | 
| 
      
 158 
     | 
    
         
            +
                                {
         
     | 
| 
      
 159 
     | 
    
         
            +
                                    "min" : "0",
         
     | 
| 
      
 160 
     | 
    
         
            +
                                    "max" : "255"
         
     | 
| 
      
 161 
     | 
    
         
            +
                                },
         
     | 
| 
      
 162 
     | 
    
         
            +
                                ],
         
     | 
| 
      
 163 
     | 
    
         
            +
                                "range" : {
         
     | 
| 
      
 164 
     | 
    
         
            +
                                    "min" : "0",
         
     | 
| 
      
 165 
     | 
    
         
            +
                                    "max" : "255"
         
     | 
| 
      
 166 
     | 
    
         
            +
                                },
         
     | 
| 
      
 167 
     | 
    
         
            +
                            },
         
     | 
| 
      
 168 
     | 
    
         
            +
                        },
         
     | 
| 
      
 169 
     | 
    
         
            +
                        "access" : "readwrite",
         
     | 
| 
      
 170 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 171 
     | 
    
         
            +
                            """An administratively-assigned name for this
         
     | 
| 
      
 172 
     | 
    
         
            +
            managed node.  By convention, this is the node's
         
     | 
| 
      
 173 
     | 
    
         
            +
            fully-qualified domain name.""",
         
     | 
| 
      
 174 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 175 
     | 
    
         
            +
                    "sysLocation" : {
         
     | 
| 
      
 176 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 177 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 178 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.1.6",
         
     | 
| 
      
 179 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 180 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 181 
     | 
    
         
            +
                            "type" :                 {
         
     | 
| 
      
 182 
     | 
    
         
            +
                                "basetype" : "OctetString",
         
     | 
| 
      
 183 
     | 
    
         
            +
                                "parent module" : {
         
     | 
| 
      
 184 
     | 
    
         
            +
                                    "name" : "RFC1213-MIB",
         
     | 
| 
      
 185 
     | 
    
         
            +
                                    "type" : "DisplayString",
         
     | 
| 
      
 186 
     | 
    
         
            +
                                },
         
     | 
| 
      
 187 
     | 
    
         
            +
                                "ranges" : [
         
     | 
| 
      
 188 
     | 
    
         
            +
                                {
         
     | 
| 
      
 189 
     | 
    
         
            +
                                    "min" : "0",
         
     | 
| 
      
 190 
     | 
    
         
            +
                                    "max" : "255"
         
     | 
| 
      
 191 
     | 
    
         
            +
                                },
         
     | 
| 
      
 192 
     | 
    
         
            +
                                ],
         
     | 
| 
      
 193 
     | 
    
         
            +
                                "range" : {
         
     | 
| 
      
 194 
     | 
    
         
            +
                                    "min" : "0",
         
     | 
| 
      
 195 
     | 
    
         
            +
                                    "max" : "255"
         
     | 
| 
      
 196 
     | 
    
         
            +
                                },
         
     | 
| 
      
 197 
     | 
    
         
            +
                            },
         
     | 
| 
      
 198 
     | 
    
         
            +
                        },
         
     | 
| 
      
 199 
     | 
    
         
            +
                        "access" : "readwrite",
         
     | 
| 
      
 200 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 201 
     | 
    
         
            +
                            """The physical location of this node (e.g.,
         
     | 
| 
      
 202 
     | 
    
         
            +
            `telephone closet, 3rd floor').""",
         
     | 
| 
      
 203 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 204 
     | 
    
         
            +
                    "sysServices" : {
         
     | 
| 
      
 205 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 206 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 207 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.1.7",
         
     | 
| 
      
 208 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 209 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 210 
     | 
    
         
            +
                            "type" :                 {
         
     | 
| 
      
 211 
     | 
    
         
            +
                                "basetype" : "Integer32",
         
     | 
| 
      
 212 
     | 
    
         
            +
                                "ranges" : [
         
     | 
| 
      
 213 
     | 
    
         
            +
                                {
         
     | 
| 
      
 214 
     | 
    
         
            +
                                    "min" : "0",
         
     | 
| 
      
 215 
     | 
    
         
            +
                                    "max" : "127"
         
     | 
| 
      
 216 
     | 
    
         
            +
                                },
         
     | 
| 
      
 217 
     | 
    
         
            +
                                ],
         
     | 
| 
      
 218 
     | 
    
         
            +
                                "range" : {
         
     | 
| 
      
 219 
     | 
    
         
            +
                                    "min" : "0",
         
     | 
| 
      
 220 
     | 
    
         
            +
                                    "max" : "127"
         
     | 
| 
      
 221 
     | 
    
         
            +
                                },
         
     | 
| 
      
 222 
     | 
    
         
            +
                            },
         
     | 
| 
      
 223 
     | 
    
         
            +
                        },
         
     | 
| 
      
 224 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 225 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 226 
     | 
    
         
            +
                            """A value which indicates the set of services that
         
     | 
| 
      
 227 
     | 
    
         
            +
            this entity primarily offers.
         
     | 
| 
      
 228 
     | 
    
         
            +
             
     | 
| 
      
 229 
     | 
    
         
            +
            The value is a sum.  This sum initially takes the
         
     | 
| 
      
 230 
     | 
    
         
            +
            value zero, Then, for each layer, L, in the range
         
     | 
| 
      
 231 
     | 
    
         
            +
            1 through 7, that this node performs transactions
         
     | 
| 
      
 232 
     | 
    
         
            +
            for, 2 raised to (L - 1) is added to the sum.  For
         
     | 
| 
      
 233 
     | 
    
         
            +
            example, a node which performs primarily routing
         
     | 
| 
      
 234 
     | 
    
         
            +
            functions would have a value of 4 (2^(3-1)).  In
         
     | 
| 
      
 235 
     | 
    
         
            +
            contrast, a node which is a host offering
         
     | 
| 
      
 236 
     | 
    
         
            +
            application services would have a value of 72
         
     | 
| 
      
 237 
     | 
    
         
            +
            (2^(4-1) + 2^(7-1)).  Note that in the context of
         
     | 
| 
      
 238 
     | 
    
         
            +
            the Internet suite of protocols, values should be
         
     | 
| 
      
 239 
     | 
    
         
            +
            calculated accordingly:
         
     | 
| 
      
 240 
     | 
    
         
            +
             
     | 
| 
      
 241 
     | 
    
         
            +
                 layer  functionality
         
     | 
| 
      
 242 
     | 
    
         
            +
                     1  physical (e.g., repeaters)
         
     | 
| 
      
 243 
     | 
    
         
            +
                     2  datalink/subnetwork (e.g., bridges)
         
     | 
| 
      
 244 
     | 
    
         
            +
                     3  internet (e.g., IP gateways)
         
     | 
| 
      
 245 
     | 
    
         
            +
                     4  end-to-end  (e.g., IP hosts)
         
     | 
| 
      
 246 
     | 
    
         
            +
                     7  applications (e.g., mail relays)
         
     | 
| 
      
 247 
     | 
    
         
            +
             
     | 
| 
      
 248 
     | 
    
         
            +
            For systems including OSI protocols, layers 5 and
         
     | 
| 
      
 249 
     | 
    
         
            +
            6 may also be counted.""",
         
     | 
| 
      
 250 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 251 
     | 
    
         
            +
                    "interfaces" : {
         
     | 
| 
      
 252 
     | 
    
         
            +
                        "nodetype" : "node",
         
     | 
| 
      
 253 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 254 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.2",
         
     | 
| 
      
 255 
     | 
    
         
            +
                    }, # node
         
     | 
| 
      
 256 
     | 
    
         
            +
                    "ifNumber" : {
         
     | 
| 
      
 257 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 258 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 259 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.2.1",
         
     | 
| 
      
 260 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 261 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 262 
     | 
    
         
            +
                            "type" : { "module" :"", "name" : "Integer32"},
         
     | 
| 
      
 263 
     | 
    
         
            +
                        },
         
     | 
| 
      
 264 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 265 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 266 
     | 
    
         
            +
                            """The number of network interfaces (regardless of
         
     | 
| 
      
 267 
     | 
    
         
            +
            their current state) present on this system.""",
         
     | 
| 
      
 268 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 269 
     | 
    
         
            +
                    "ifTable" : {
         
     | 
| 
      
 270 
     | 
    
         
            +
                        "nodetype" : "table",
         
     | 
| 
      
 271 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 272 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.2.2",
         
     | 
| 
      
 273 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 274 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 275 
     | 
    
         
            +
                            """A list of interface entries.  The number of
         
     | 
| 
      
 276 
     | 
    
         
            +
            entries is given by the value of ifNumber.""",
         
     | 
| 
      
 277 
     | 
    
         
            +
                    }, # table
         
     | 
| 
      
 278 
     | 
    
         
            +
                    "ifEntry" : {
         
     | 
| 
      
 279 
     | 
    
         
            +
                        "nodetype" : "row",
         
     | 
| 
      
 280 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 281 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.2.2.1",
         
     | 
| 
      
 282 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 283 
     | 
    
         
            +
                        "linkage" : [
         
     | 
| 
      
 284 
     | 
    
         
            +
                            "ifIndex",
         
     | 
| 
      
 285 
     | 
    
         
            +
                        ],
         
     | 
| 
      
 286 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 287 
     | 
    
         
            +
                            """An interface entry containing objects at the
         
     | 
| 
      
 288 
     | 
    
         
            +
            subnetwork layer and below for a particular
         
     | 
| 
      
 289 
     | 
    
         
            +
            interface.""",
         
     | 
| 
      
 290 
     | 
    
         
            +
                    }, # row
         
     | 
| 
      
 291 
     | 
    
         
            +
                    "ifIndex" : {
         
     | 
| 
      
 292 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 293 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 294 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.2.2.1.1",
         
     | 
| 
      
 295 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 296 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 297 
     | 
    
         
            +
                            "type" : { "module" :"", "name" : "Integer32"},
         
     | 
| 
      
 298 
     | 
    
         
            +
                        },
         
     | 
| 
      
 299 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 300 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 301 
     | 
    
         
            +
                            """A unique value for each interface.  Its value
         
     | 
| 
      
 302 
     | 
    
         
            +
            ranges between 1 and the value of ifNumber.  The
         
     | 
| 
      
 303 
     | 
    
         
            +
            value for each interface must remain constant at
         
     | 
| 
      
 304 
     | 
    
         
            +
            least from one re-initialization of the entity's
         
     | 
| 
      
 305 
     | 
    
         
            +
            network management system to the next re-
         
     | 
| 
      
 306 
     | 
    
         
            +
            initialization.""",
         
     | 
| 
      
 307 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 308 
     | 
    
         
            +
                    "ifDescr" : {
         
     | 
| 
      
 309 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 310 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 311 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.2.2.1.2",
         
     | 
| 
      
 312 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 313 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 314 
     | 
    
         
            +
                            "type" :                 {
         
     | 
| 
      
 315 
     | 
    
         
            +
                                "basetype" : "OctetString",
         
     | 
| 
      
 316 
     | 
    
         
            +
                                "parent module" : {
         
     | 
| 
      
 317 
     | 
    
         
            +
                                    "name" : "RFC1213-MIB",
         
     | 
| 
      
 318 
     | 
    
         
            +
                                    "type" : "DisplayString",
         
     | 
| 
      
 319 
     | 
    
         
            +
                                },
         
     | 
| 
      
 320 
     | 
    
         
            +
                                "ranges" : [
         
     | 
| 
      
 321 
     | 
    
         
            +
                                {
         
     | 
| 
      
 322 
     | 
    
         
            +
                                    "min" : "0",
         
     | 
| 
      
 323 
     | 
    
         
            +
                                    "max" : "255"
         
     | 
| 
      
 324 
     | 
    
         
            +
                                },
         
     | 
| 
      
 325 
     | 
    
         
            +
                                ],
         
     | 
| 
      
 326 
     | 
    
         
            +
                                "range" : {
         
     | 
| 
      
 327 
     | 
    
         
            +
                                    "min" : "0",
         
     | 
| 
      
 328 
     | 
    
         
            +
                                    "max" : "255"
         
     | 
| 
      
 329 
     | 
    
         
            +
                                },
         
     | 
| 
      
 330 
     | 
    
         
            +
                            },
         
     | 
| 
      
 331 
     | 
    
         
            +
                        },
         
     | 
| 
      
 332 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 333 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 334 
     | 
    
         
            +
                            """A textual string containing information about the
         
     | 
| 
      
 335 
     | 
    
         
            +
            interface.  This string should include the name of
         
     | 
| 
      
 336 
     | 
    
         
            +
            the manufacturer, the product name and the version
         
     | 
| 
      
 337 
     | 
    
         
            +
            of the hardware interface.""",
         
     | 
| 
      
 338 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 339 
     | 
    
         
            +
                    "ifType" : {
         
     | 
| 
      
 340 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 341 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 342 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.2.2.1.3",
         
     | 
| 
      
 343 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 344 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 345 
     | 
    
         
            +
                            "type" :                 {
         
     | 
| 
      
 346 
     | 
    
         
            +
                                "basetype" : "Enumeration",
         
     | 
| 
      
 347 
     | 
    
         
            +
                                "other" : {
         
     | 
| 
      
 348 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 349 
     | 
    
         
            +
                                    "number" : "1"
         
     | 
| 
      
 350 
     | 
    
         
            +
                                },
         
     | 
| 
      
 351 
     | 
    
         
            +
                                "regular1822" : {
         
     | 
| 
      
 352 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 353 
     | 
    
         
            +
                                    "number" : "2"
         
     | 
| 
      
 354 
     | 
    
         
            +
                                },
         
     | 
| 
      
 355 
     | 
    
         
            +
                                "hdh1822" : {
         
     | 
| 
      
 356 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 357 
     | 
    
         
            +
                                    "number" : "3"
         
     | 
| 
      
 358 
     | 
    
         
            +
                                },
         
     | 
| 
      
 359 
     | 
    
         
            +
                                "ddn-x25" : {
         
     | 
| 
      
 360 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 361 
     | 
    
         
            +
                                    "number" : "4"
         
     | 
| 
      
 362 
     | 
    
         
            +
                                },
         
     | 
| 
      
 363 
     | 
    
         
            +
                                "rfc877-x25" : {
         
     | 
| 
      
 364 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 365 
     | 
    
         
            +
                                    "number" : "5"
         
     | 
| 
      
 366 
     | 
    
         
            +
                                },
         
     | 
| 
      
 367 
     | 
    
         
            +
                                "ethernet-csmacd" : {
         
     | 
| 
      
 368 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 369 
     | 
    
         
            +
                                    "number" : "6"
         
     | 
| 
      
 370 
     | 
    
         
            +
                                },
         
     | 
| 
      
 371 
     | 
    
         
            +
                                "iso88023-csmacd" : {
         
     | 
| 
      
 372 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 373 
     | 
    
         
            +
                                    "number" : "7"
         
     | 
| 
      
 374 
     | 
    
         
            +
                                },
         
     | 
| 
      
 375 
     | 
    
         
            +
                                "iso88024-tokenBus" : {
         
     | 
| 
      
 376 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 377 
     | 
    
         
            +
                                    "number" : "8"
         
     | 
| 
      
 378 
     | 
    
         
            +
                                },
         
     | 
| 
      
 379 
     | 
    
         
            +
                                "iso88025-tokenRing" : {
         
     | 
| 
      
 380 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 381 
     | 
    
         
            +
                                    "number" : "9"
         
     | 
| 
      
 382 
     | 
    
         
            +
                                },
         
     | 
| 
      
 383 
     | 
    
         
            +
                                "iso88026-man" : {
         
     | 
| 
      
 384 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 385 
     | 
    
         
            +
                                    "number" : "10"
         
     | 
| 
      
 386 
     | 
    
         
            +
                                },
         
     | 
| 
      
 387 
     | 
    
         
            +
                                "starLan" : {
         
     | 
| 
      
 388 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 389 
     | 
    
         
            +
                                    "number" : "11"
         
     | 
| 
      
 390 
     | 
    
         
            +
                                },
         
     | 
| 
      
 391 
     | 
    
         
            +
                                "proteon-10Mbit" : {
         
     | 
| 
      
 392 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 393 
     | 
    
         
            +
                                    "number" : "12"
         
     | 
| 
      
 394 
     | 
    
         
            +
                                },
         
     | 
| 
      
 395 
     | 
    
         
            +
                                "proteon-80Mbit" : {
         
     | 
| 
      
 396 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 397 
     | 
    
         
            +
                                    "number" : "13"
         
     | 
| 
      
 398 
     | 
    
         
            +
                                },
         
     | 
| 
      
 399 
     | 
    
         
            +
                                "hyperchannel" : {
         
     | 
| 
      
 400 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 401 
     | 
    
         
            +
                                    "number" : "14"
         
     | 
| 
      
 402 
     | 
    
         
            +
                                },
         
     | 
| 
      
 403 
     | 
    
         
            +
                                "fddi" : {
         
     | 
| 
      
 404 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 405 
     | 
    
         
            +
                                    "number" : "15"
         
     | 
| 
      
 406 
     | 
    
         
            +
                                },
         
     | 
| 
      
 407 
     | 
    
         
            +
                                "lapb" : {
         
     | 
| 
      
 408 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 409 
     | 
    
         
            +
                                    "number" : "16"
         
     | 
| 
      
 410 
     | 
    
         
            +
                                },
         
     | 
| 
      
 411 
     | 
    
         
            +
                                "sdlc" : {
         
     | 
| 
      
 412 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 413 
     | 
    
         
            +
                                    "number" : "17"
         
     | 
| 
      
 414 
     | 
    
         
            +
                                },
         
     | 
| 
      
 415 
     | 
    
         
            +
                                "ds1" : {
         
     | 
| 
      
 416 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 417 
     | 
    
         
            +
                                    "number" : "18"
         
     | 
| 
      
 418 
     | 
    
         
            +
                                },
         
     | 
| 
      
 419 
     | 
    
         
            +
                                "e1" : {
         
     | 
| 
      
 420 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 421 
     | 
    
         
            +
                                    "number" : "19"
         
     | 
| 
      
 422 
     | 
    
         
            +
                                },
         
     | 
| 
      
 423 
     | 
    
         
            +
                                "basicISDN" : {
         
     | 
| 
      
 424 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 425 
     | 
    
         
            +
                                    "number" : "20"
         
     | 
| 
      
 426 
     | 
    
         
            +
                                },
         
     | 
| 
      
 427 
     | 
    
         
            +
                                "primaryISDN" : {
         
     | 
| 
      
 428 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 429 
     | 
    
         
            +
                                    "number" : "21"
         
     | 
| 
      
 430 
     | 
    
         
            +
                                },
         
     | 
| 
      
 431 
     | 
    
         
            +
                                "propPointToPointSerial" : {
         
     | 
| 
      
 432 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 433 
     | 
    
         
            +
                                    "number" : "22"
         
     | 
| 
      
 434 
     | 
    
         
            +
                                },
         
     | 
| 
      
 435 
     | 
    
         
            +
                                "ppp" : {
         
     | 
| 
      
 436 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 437 
     | 
    
         
            +
                                    "number" : "23"
         
     | 
| 
      
 438 
     | 
    
         
            +
                                },
         
     | 
| 
      
 439 
     | 
    
         
            +
                                "softwareLoopback" : {
         
     | 
| 
      
 440 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 441 
     | 
    
         
            +
                                    "number" : "24"
         
     | 
| 
      
 442 
     | 
    
         
            +
                                },
         
     | 
| 
      
 443 
     | 
    
         
            +
                                "eon" : {
         
     | 
| 
      
 444 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 445 
     | 
    
         
            +
                                    "number" : "25"
         
     | 
| 
      
 446 
     | 
    
         
            +
                                },
         
     | 
| 
      
 447 
     | 
    
         
            +
                                "ethernet-3Mbit" : {
         
     | 
| 
      
 448 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 449 
     | 
    
         
            +
                                    "number" : "26"
         
     | 
| 
      
 450 
     | 
    
         
            +
                                },
         
     | 
| 
      
 451 
     | 
    
         
            +
                                "nsip" : {
         
     | 
| 
      
 452 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 453 
     | 
    
         
            +
                                    "number" : "27"
         
     | 
| 
      
 454 
     | 
    
         
            +
                                },
         
     | 
| 
      
 455 
     | 
    
         
            +
                                "slip" : {
         
     | 
| 
      
 456 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 457 
     | 
    
         
            +
                                    "number" : "28"
         
     | 
| 
      
 458 
     | 
    
         
            +
                                },
         
     | 
| 
      
 459 
     | 
    
         
            +
                                "ultra" : {
         
     | 
| 
      
 460 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 461 
     | 
    
         
            +
                                    "number" : "29"
         
     | 
| 
      
 462 
     | 
    
         
            +
                                },
         
     | 
| 
      
 463 
     | 
    
         
            +
                                "ds3" : {
         
     | 
| 
      
 464 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 465 
     | 
    
         
            +
                                    "number" : "30"
         
     | 
| 
      
 466 
     | 
    
         
            +
                                },
         
     | 
| 
      
 467 
     | 
    
         
            +
                                "sip" : {
         
     | 
| 
      
 468 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 469 
     | 
    
         
            +
                                    "number" : "31"
         
     | 
| 
      
 470 
     | 
    
         
            +
                                },
         
     | 
| 
      
 471 
     | 
    
         
            +
                                "frame-relay" : {
         
     | 
| 
      
 472 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 473 
     | 
    
         
            +
                                    "number" : "32"
         
     | 
| 
      
 474 
     | 
    
         
            +
                                },
         
     | 
| 
      
 475 
     | 
    
         
            +
                            },
         
     | 
| 
      
 476 
     | 
    
         
            +
                        },
         
     | 
| 
      
 477 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 478 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 479 
     | 
    
         
            +
                            """The type of interface, distinguished according to
         
     | 
| 
      
 480 
     | 
    
         
            +
            the physical/link protocol(s) immediately `below'
         
     | 
| 
      
 481 
     | 
    
         
            +
            the network layer in the protocol stack.""",
         
     | 
| 
      
 482 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 483 
     | 
    
         
            +
                    "ifMtu" : {
         
     | 
| 
      
 484 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 485 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 486 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.2.2.1.4",
         
     | 
| 
      
 487 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 488 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 489 
     | 
    
         
            +
                            "type" : { "module" :"", "name" : "Integer32"},
         
     | 
| 
      
 490 
     | 
    
         
            +
                        },
         
     | 
| 
      
 491 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 492 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 493 
     | 
    
         
            +
                            """The size of the largest datagram which can be
         
     | 
| 
      
 494 
     | 
    
         
            +
            sent/received on the interface, specified in
         
     | 
| 
      
 495 
     | 
    
         
            +
            octets.  For interfaces that are used for
         
     | 
| 
      
 496 
     | 
    
         
            +
            transmitting network datagrams, this is the size
         
     | 
| 
      
 497 
     | 
    
         
            +
            of the largest network datagram that can be sent
         
     | 
| 
      
 498 
     | 
    
         
            +
            on the interface.""",
         
     | 
| 
      
 499 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 500 
     | 
    
         
            +
                    "ifSpeed" : {
         
     | 
| 
      
 501 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 502 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 503 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.2.2.1.5",
         
     | 
| 
      
 504 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 505 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 506 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Gauge"},
         
     | 
| 
      
 507 
     | 
    
         
            +
                        },
         
     | 
| 
      
 508 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 509 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 510 
     | 
    
         
            +
                            """An estimate of the interface's current bandwidth
         
     | 
| 
      
 511 
     | 
    
         
            +
            in bits per second.  For interfaces which do not
         
     | 
| 
      
 512 
     | 
    
         
            +
            vary in bandwidth or for those where no accurate
         
     | 
| 
      
 513 
     | 
    
         
            +
            estimation can be made, this object should contain
         
     | 
| 
      
 514 
     | 
    
         
            +
            the nominal bandwidth.""",
         
     | 
| 
      
 515 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 516 
     | 
    
         
            +
                    "ifPhysAddress" : {
         
     | 
| 
      
 517 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 518 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 519 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.2.2.1.6",
         
     | 
| 
      
 520 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 521 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 522 
     | 
    
         
            +
                            "type" : { "module" :"RFC1213-MIB", "name" : "PhysAddress"},
         
     | 
| 
      
 523 
     | 
    
         
            +
                        },
         
     | 
| 
      
 524 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 525 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 526 
     | 
    
         
            +
                            """The interface's address at the protocol layer
         
     | 
| 
      
 527 
     | 
    
         
            +
            immediately `below' the network layer in the
         
     | 
| 
      
 528 
     | 
    
         
            +
            protocol stack.  For interfaces which do not have
         
     | 
| 
      
 529 
     | 
    
         
            +
             
     | 
| 
      
 530 
     | 
    
         
            +
            such an address (e.g., a serial line), this object
         
     | 
| 
      
 531 
     | 
    
         
            +
            should contain an octet string of zero length.""",
         
     | 
| 
      
 532 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 533 
     | 
    
         
            +
                    "ifAdminStatus" : {
         
     | 
| 
      
 534 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 535 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 536 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.2.2.1.7",
         
     | 
| 
      
 537 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 538 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 539 
     | 
    
         
            +
                            "type" :                 {
         
     | 
| 
      
 540 
     | 
    
         
            +
                                "basetype" : "Enumeration",
         
     | 
| 
      
 541 
     | 
    
         
            +
                                "up" : {
         
     | 
| 
      
 542 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 543 
     | 
    
         
            +
                                    "number" : "1"
         
     | 
| 
      
 544 
     | 
    
         
            +
                                },
         
     | 
| 
      
 545 
     | 
    
         
            +
                                "down" : {
         
     | 
| 
      
 546 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 547 
     | 
    
         
            +
                                    "number" : "2"
         
     | 
| 
      
 548 
     | 
    
         
            +
                                },
         
     | 
| 
      
 549 
     | 
    
         
            +
                                "testing" : {
         
     | 
| 
      
 550 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 551 
     | 
    
         
            +
                                    "number" : "3"
         
     | 
| 
      
 552 
     | 
    
         
            +
                                },
         
     | 
| 
      
 553 
     | 
    
         
            +
                            },
         
     | 
| 
      
 554 
     | 
    
         
            +
                        },
         
     | 
| 
      
 555 
     | 
    
         
            +
                        "access" : "readwrite",
         
     | 
| 
      
 556 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 557 
     | 
    
         
            +
                            """The desired state of the interface.  The
         
     | 
| 
      
 558 
     | 
    
         
            +
            testing(3) state indicates that no operational
         
     | 
| 
      
 559 
     | 
    
         
            +
            packets can be passed.""",
         
     | 
| 
      
 560 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 561 
     | 
    
         
            +
                    "ifOperStatus" : {
         
     | 
| 
      
 562 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 563 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 564 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.2.2.1.8",
         
     | 
| 
      
 565 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 566 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 567 
     | 
    
         
            +
                            "type" :                 {
         
     | 
| 
      
 568 
     | 
    
         
            +
                                "basetype" : "Enumeration",
         
     | 
| 
      
 569 
     | 
    
         
            +
                                "up" : {
         
     | 
| 
      
 570 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 571 
     | 
    
         
            +
                                    "number" : "1"
         
     | 
| 
      
 572 
     | 
    
         
            +
                                },
         
     | 
| 
      
 573 
     | 
    
         
            +
                                "down" : {
         
     | 
| 
      
 574 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 575 
     | 
    
         
            +
                                    "number" : "2"
         
     | 
| 
      
 576 
     | 
    
         
            +
                                },
         
     | 
| 
      
 577 
     | 
    
         
            +
                                "testing" : {
         
     | 
| 
      
 578 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 579 
     | 
    
         
            +
                                    "number" : "3"
         
     | 
| 
      
 580 
     | 
    
         
            +
                                },
         
     | 
| 
      
 581 
     | 
    
         
            +
                            },
         
     | 
| 
      
 582 
     | 
    
         
            +
                        },
         
     | 
| 
      
 583 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 584 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 585 
     | 
    
         
            +
                            """The current operational state of the interface.
         
     | 
| 
      
 586 
     | 
    
         
            +
            The testing(3) state indicates that no operational
         
     | 
| 
      
 587 
     | 
    
         
            +
            packets can be passed.""",
         
     | 
| 
      
 588 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 589 
     | 
    
         
            +
                    "ifLastChange" : {
         
     | 
| 
      
 590 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 591 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 592 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.2.2.1.9",
         
     | 
| 
      
 593 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 594 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 595 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "TimeTicks"},
         
     | 
| 
      
 596 
     | 
    
         
            +
                        },
         
     | 
| 
      
 597 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 598 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 599 
     | 
    
         
            +
                            """The value of sysUpTime at the time the interface
         
     | 
| 
      
 600 
     | 
    
         
            +
            entered its current operational state.  If the
         
     | 
| 
      
 601 
     | 
    
         
            +
            current state was entered prior to the last re-
         
     | 
| 
      
 602 
     | 
    
         
            +
            initialization of the local network management
         
     | 
| 
      
 603 
     | 
    
         
            +
            subsystem, then this object contains a zero
         
     | 
| 
      
 604 
     | 
    
         
            +
            value.""",
         
     | 
| 
      
 605 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 606 
     | 
    
         
            +
                    "ifInOctets" : {
         
     | 
| 
      
 607 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 608 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 609 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.2.2.1.10",
         
     | 
| 
      
 610 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 611 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 612 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 613 
     | 
    
         
            +
                        },
         
     | 
| 
      
 614 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 615 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 616 
     | 
    
         
            +
                            """The total number of octets received on the
         
     | 
| 
      
 617 
     | 
    
         
            +
            interface, including framing characters.""",
         
     | 
| 
      
 618 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 619 
     | 
    
         
            +
                    "ifInUcastPkts" : {
         
     | 
| 
      
 620 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 621 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 622 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.2.2.1.11",
         
     | 
| 
      
 623 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 624 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 625 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 626 
     | 
    
         
            +
                        },
         
     | 
| 
      
 627 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 628 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 629 
     | 
    
         
            +
                            """The number of subnetwork-unicast packets
         
     | 
| 
      
 630 
     | 
    
         
            +
            delivered to a higher-layer protocol.""",
         
     | 
| 
      
 631 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 632 
     | 
    
         
            +
                    "ifInNUcastPkts" : {
         
     | 
| 
      
 633 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 634 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 635 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.2.2.1.12",
         
     | 
| 
      
 636 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 637 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 638 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 639 
     | 
    
         
            +
                        },
         
     | 
| 
      
 640 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 641 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 642 
     | 
    
         
            +
                            """The number of non-unicast (i.e., subnetwork-
         
     | 
| 
      
 643 
     | 
    
         
            +
            broadcast or subnetwork-multicast) packets
         
     | 
| 
      
 644 
     | 
    
         
            +
            delivered to a higher-layer protocol.""",
         
     | 
| 
      
 645 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 646 
     | 
    
         
            +
                    "ifInDiscards" : {
         
     | 
| 
      
 647 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 648 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 649 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.2.2.1.13",
         
     | 
| 
      
 650 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 651 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 652 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 653 
     | 
    
         
            +
                        },
         
     | 
| 
      
 654 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 655 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 656 
     | 
    
         
            +
                            """The number of inbound packets which were chosen
         
     | 
| 
      
 657 
     | 
    
         
            +
            to be discarded even though no errors had been
         
     | 
| 
      
 658 
     | 
    
         
            +
            detected to prevent their being deliverable to a
         
     | 
| 
      
 659 
     | 
    
         
            +
            higher-layer protocol.  One possible reason for
         
     | 
| 
      
 660 
     | 
    
         
            +
            discarding such a packet could be to free up
         
     | 
| 
      
 661 
     | 
    
         
            +
            buffer space.""",
         
     | 
| 
      
 662 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 663 
     | 
    
         
            +
                    "ifInErrors" : {
         
     | 
| 
      
 664 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 665 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 666 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.2.2.1.14",
         
     | 
| 
      
 667 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 668 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 669 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 670 
     | 
    
         
            +
                        },
         
     | 
| 
      
 671 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 672 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 673 
     | 
    
         
            +
                            """The number of inbound packets that contained
         
     | 
| 
      
 674 
     | 
    
         
            +
            errors preventing them from being deliverable to a
         
     | 
| 
      
 675 
     | 
    
         
            +
            higher-layer protocol.""",
         
     | 
| 
      
 676 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 677 
     | 
    
         
            +
                    "ifInUnknownProtos" : {
         
     | 
| 
      
 678 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 679 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 680 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.2.2.1.15",
         
     | 
| 
      
 681 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 682 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 683 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 684 
     | 
    
         
            +
                        },
         
     | 
| 
      
 685 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 686 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 687 
     | 
    
         
            +
                            """The number of packets received via the interface
         
     | 
| 
      
 688 
     | 
    
         
            +
            which were discarded because of an unknown or
         
     | 
| 
      
 689 
     | 
    
         
            +
            unsupported protocol.""",
         
     | 
| 
      
 690 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 691 
     | 
    
         
            +
                    "ifOutOctets" : {
         
     | 
| 
      
 692 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 693 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 694 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.2.2.1.16",
         
     | 
| 
      
 695 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 696 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 697 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 698 
     | 
    
         
            +
                        },
         
     | 
| 
      
 699 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 700 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 701 
     | 
    
         
            +
                            """The total number of octets transmitted out of the
         
     | 
| 
      
 702 
     | 
    
         
            +
            interface, including framing characters.""",
         
     | 
| 
      
 703 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 704 
     | 
    
         
            +
                    "ifOutUcastPkts" : {
         
     | 
| 
      
 705 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 706 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 707 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.2.2.1.17",
         
     | 
| 
      
 708 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 709 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 710 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 711 
     | 
    
         
            +
                        },
         
     | 
| 
      
 712 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 713 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 714 
     | 
    
         
            +
                            """The total number of packets that higher-level
         
     | 
| 
      
 715 
     | 
    
         
            +
            protocols requested be transmitted to a
         
     | 
| 
      
 716 
     | 
    
         
            +
            subnetwork-unicast address, including those that
         
     | 
| 
      
 717 
     | 
    
         
            +
            were discarded or not sent.""",
         
     | 
| 
      
 718 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 719 
     | 
    
         
            +
                    "ifOutNUcastPkts" : {
         
     | 
| 
      
 720 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 721 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 722 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.2.2.1.18",
         
     | 
| 
      
 723 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 724 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 725 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 726 
     | 
    
         
            +
                        },
         
     | 
| 
      
 727 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 728 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 729 
     | 
    
         
            +
                            """The total number of packets that higher-level
         
     | 
| 
      
 730 
     | 
    
         
            +
            protocols requested be transmitted to a non-
         
     | 
| 
      
 731 
     | 
    
         
            +
            unicast (i.e., a subnetwork-broadcast or
         
     | 
| 
      
 732 
     | 
    
         
            +
            subnetwork-multicast) address, including those
         
     | 
| 
      
 733 
     | 
    
         
            +
            that were discarded or not sent.""",
         
     | 
| 
      
 734 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 735 
     | 
    
         
            +
                    "ifOutDiscards" : {
         
     | 
| 
      
 736 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 737 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 738 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.2.2.1.19",
         
     | 
| 
      
 739 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 740 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 741 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 742 
     | 
    
         
            +
                        },
         
     | 
| 
      
 743 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 744 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 745 
     | 
    
         
            +
                            """The number of outbound packets which were chosen
         
     | 
| 
      
 746 
     | 
    
         
            +
             
     | 
| 
      
 747 
     | 
    
         
            +
            to be discarded even though no errors had been
         
     | 
| 
      
 748 
     | 
    
         
            +
            detected to prevent their being transmitted.  One
         
     | 
| 
      
 749 
     | 
    
         
            +
            possible reason for discarding such a packet could
         
     | 
| 
      
 750 
     | 
    
         
            +
            be to free up buffer space.""",
         
     | 
| 
      
 751 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 752 
     | 
    
         
            +
                    "ifOutErrors" : {
         
     | 
| 
      
 753 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 754 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 755 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.2.2.1.20",
         
     | 
| 
      
 756 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 757 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 758 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 759 
     | 
    
         
            +
                        },
         
     | 
| 
      
 760 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 761 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 762 
     | 
    
         
            +
                            """The number of outbound packets that could not be
         
     | 
| 
      
 763 
     | 
    
         
            +
            transmitted because of errors.""",
         
     | 
| 
      
 764 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 765 
     | 
    
         
            +
                    "ifOutQLen" : {
         
     | 
| 
      
 766 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 767 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 768 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.2.2.1.21",
         
     | 
| 
      
 769 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 770 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 771 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Gauge"},
         
     | 
| 
      
 772 
     | 
    
         
            +
                        },
         
     | 
| 
      
 773 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 774 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 775 
     | 
    
         
            +
                            """The length of the output packet queue (in
         
     | 
| 
      
 776 
     | 
    
         
            +
            packets).""",
         
     | 
| 
      
 777 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 778 
     | 
    
         
            +
                    "ifSpecific" : {
         
     | 
| 
      
 779 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 780 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 781 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.2.2.1.22",
         
     | 
| 
      
 782 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 783 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 784 
     | 
    
         
            +
                            "type" : { "module" :"", "name" : "ObjectIdentifier"},
         
     | 
| 
      
 785 
     | 
    
         
            +
                        },
         
     | 
| 
      
 786 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 787 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 788 
     | 
    
         
            +
                            """A reference to MIB definitions specific to the
         
     | 
| 
      
 789 
     | 
    
         
            +
            particular media being used to realize the
         
     | 
| 
      
 790 
     | 
    
         
            +
            interface.  For example, if the interface is
         
     | 
| 
      
 791 
     | 
    
         
            +
            realized by an ethernet, then the value of this
         
     | 
| 
      
 792 
     | 
    
         
            +
            object refers to a document defining objects
         
     | 
| 
      
 793 
     | 
    
         
            +
            specific to ethernet.  If this information is not
         
     | 
| 
      
 794 
     | 
    
         
            +
            present, its value should be set to the OBJECT
         
     | 
| 
      
 795 
     | 
    
         
            +
            IDENTIFIER { 0 0 }, which is a syntatically valid
         
     | 
| 
      
 796 
     | 
    
         
            +
            object identifier, and any conformant
         
     | 
| 
      
 797 
     | 
    
         
            +
            implementation of ASN.1 and BER must be able to
         
     | 
| 
      
 798 
     | 
    
         
            +
            generate and recognize this value.""",
         
     | 
| 
      
 799 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 800 
     | 
    
         
            +
                    "at" : {
         
     | 
| 
      
 801 
     | 
    
         
            +
                        "nodetype" : "node",
         
     | 
| 
      
 802 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 803 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.3",
         
     | 
| 
      
 804 
     | 
    
         
            +
                    }, # node
         
     | 
| 
      
 805 
     | 
    
         
            +
                    "atTable" : {
         
     | 
| 
      
 806 
     | 
    
         
            +
                        "nodetype" : "table",
         
     | 
| 
      
 807 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 808 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.3.1",
         
     | 
| 
      
 809 
     | 
    
         
            +
                        "status" : "obsolete",
         
     | 
| 
      
 810 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 811 
     | 
    
         
            +
                            """The Address Translation tables contain the
         
     | 
| 
      
 812 
     | 
    
         
            +
            NetworkAddress to `physical' address equivalences.
         
     | 
| 
      
 813 
     | 
    
         
            +
            Some interfaces do not use translation tables for
         
     | 
| 
      
 814 
     | 
    
         
            +
            determining address equivalences (e.g., DDN-X.25
         
     | 
| 
      
 815 
     | 
    
         
            +
            has an algorithmic method); if all interfaces are
         
     | 
| 
      
 816 
     | 
    
         
            +
            of this type, then the Address Translation table
         
     | 
| 
      
 817 
     | 
    
         
            +
            is empty, i.e., has zero entries.""",
         
     | 
| 
      
 818 
     | 
    
         
            +
                    }, # table
         
     | 
| 
      
 819 
     | 
    
         
            +
                    "atEntry" : {
         
     | 
| 
      
 820 
     | 
    
         
            +
                        "nodetype" : "row",
         
     | 
| 
      
 821 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 822 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.3.1.1",
         
     | 
| 
      
 823 
     | 
    
         
            +
                        "status" : "obsolete",
         
     | 
| 
      
 824 
     | 
    
         
            +
                        "linkage" : [
         
     | 
| 
      
 825 
     | 
    
         
            +
                            "atIfIndex",
         
     | 
| 
      
 826 
     | 
    
         
            +
                            "atNetAddress",
         
     | 
| 
      
 827 
     | 
    
         
            +
                        ],
         
     | 
| 
      
 828 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 829 
     | 
    
         
            +
                            """Each entry contains one NetworkAddress to
         
     | 
| 
      
 830 
     | 
    
         
            +
            `physical' address equivalence.""",
         
     | 
| 
      
 831 
     | 
    
         
            +
                    }, # row
         
     | 
| 
      
 832 
     | 
    
         
            +
                    "atIfIndex" : {
         
     | 
| 
      
 833 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 834 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 835 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.3.1.1.1",
         
     | 
| 
      
 836 
     | 
    
         
            +
                        "status" : "obsolete",
         
     | 
| 
      
 837 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 838 
     | 
    
         
            +
                            "type" : { "module" :"", "name" : "Integer32"},
         
     | 
| 
      
 839 
     | 
    
         
            +
                        },
         
     | 
| 
      
 840 
     | 
    
         
            +
                        "access" : "readwrite",
         
     | 
| 
      
 841 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 842 
     | 
    
         
            +
                            """The interface on which this entry's equivalence
         
     | 
| 
      
 843 
     | 
    
         
            +
            is effective.  The interface identified by a
         
     | 
| 
      
 844 
     | 
    
         
            +
            particular value of this index is the same
         
     | 
| 
      
 845 
     | 
    
         
            +
            interface as identified by the same value of
         
     | 
| 
      
 846 
     | 
    
         
            +
            ifIndex.""",
         
     | 
| 
      
 847 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 848 
     | 
    
         
            +
                    "atPhysAddress" : {
         
     | 
| 
      
 849 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 850 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 851 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.3.1.1.2",
         
     | 
| 
      
 852 
     | 
    
         
            +
                        "status" : "obsolete",
         
     | 
| 
      
 853 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 854 
     | 
    
         
            +
                            "type" : { "module" :"RFC1213-MIB", "name" : "PhysAddress"},
         
     | 
| 
      
 855 
     | 
    
         
            +
                        },
         
     | 
| 
      
 856 
     | 
    
         
            +
                        "access" : "readwrite",
         
     | 
| 
      
 857 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 858 
     | 
    
         
            +
                            """The media-dependent `physical' address.
         
     | 
| 
      
 859 
     | 
    
         
            +
             
     | 
| 
      
 860 
     | 
    
         
            +
            Setting this object to a null string (one of zero
         
     | 
| 
      
 861 
     | 
    
         
            +
            length) has the effect of invaliding the
         
     | 
| 
      
 862 
     | 
    
         
            +
            corresponding entry in the atTable object.  That
         
     | 
| 
      
 863 
     | 
    
         
            +
            is, it effectively dissasociates the interface
         
     | 
| 
      
 864 
     | 
    
         
            +
            identified with said entry from the mapping
         
     | 
| 
      
 865 
     | 
    
         
            +
            identified with said entry.  It is an
         
     | 
| 
      
 866 
     | 
    
         
            +
            implementation-specific matter as to whether the
         
     | 
| 
      
 867 
     | 
    
         
            +
            agent removes an invalidated entry from the table.
         
     | 
| 
      
 868 
     | 
    
         
            +
            Accordingly, management stations must be prepared
         
     | 
| 
      
 869 
     | 
    
         
            +
            to receive tabular information from agents that
         
     | 
| 
      
 870 
     | 
    
         
            +
            corresponds to entries not currently in use.
         
     | 
| 
      
 871 
     | 
    
         
            +
            Proper interpretation of such entries requires
         
     | 
| 
      
 872 
     | 
    
         
            +
            examination of the relevant atPhysAddress object.""",
         
     | 
| 
      
 873 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 874 
     | 
    
         
            +
                    "atNetAddress" : {
         
     | 
| 
      
 875 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 876 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 877 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.3.1.1.3",
         
     | 
| 
      
 878 
     | 
    
         
            +
                        "status" : "obsolete",
         
     | 
| 
      
 879 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 880 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "NetworkAddress"},
         
     | 
| 
      
 881 
     | 
    
         
            +
                        },
         
     | 
| 
      
 882 
     | 
    
         
            +
                        "access" : "readwrite",
         
     | 
| 
      
 883 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 884 
     | 
    
         
            +
                            """The NetworkAddress (e.g., the IP address)
         
     | 
| 
      
 885 
     | 
    
         
            +
            corresponding to the media-dependent `physical'
         
     | 
| 
      
 886 
     | 
    
         
            +
            address.""",
         
     | 
| 
      
 887 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 888 
     | 
    
         
            +
                    "ip" : {
         
     | 
| 
      
 889 
     | 
    
         
            +
                        "nodetype" : "node",
         
     | 
| 
      
 890 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 891 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4",
         
     | 
| 
      
 892 
     | 
    
         
            +
                    }, # node
         
     | 
| 
      
 893 
     | 
    
         
            +
                    "ipForwarding" : {
         
     | 
| 
      
 894 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 895 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 896 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.1",
         
     | 
| 
      
 897 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 898 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 899 
     | 
    
         
            +
                            "type" :                 {
         
     | 
| 
      
 900 
     | 
    
         
            +
                                "basetype" : "Enumeration",
         
     | 
| 
      
 901 
     | 
    
         
            +
                                "forwarding" : {
         
     | 
| 
      
 902 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 903 
     | 
    
         
            +
                                    "number" : "1"
         
     | 
| 
      
 904 
     | 
    
         
            +
                                },
         
     | 
| 
      
 905 
     | 
    
         
            +
                                "not-forwarding" : {
         
     | 
| 
      
 906 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 907 
     | 
    
         
            +
                                    "number" : "2"
         
     | 
| 
      
 908 
     | 
    
         
            +
                                },
         
     | 
| 
      
 909 
     | 
    
         
            +
                            },
         
     | 
| 
      
 910 
     | 
    
         
            +
                        },
         
     | 
| 
      
 911 
     | 
    
         
            +
                        "access" : "readwrite",
         
     | 
| 
      
 912 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 913 
     | 
    
         
            +
                            """The indication of whether this entity is acting
         
     | 
| 
      
 914 
     | 
    
         
            +
            as an IP gateway in respect to the forwarding of
         
     | 
| 
      
 915 
     | 
    
         
            +
            datagrams received by, but not addressed to, this
         
     | 
| 
      
 916 
     | 
    
         
            +
            entity.  IP gateways forward datagrams.  IP hosts
         
     | 
| 
      
 917 
     | 
    
         
            +
            do not (except those source-routed via the host).
         
     | 
| 
      
 918 
     | 
    
         
            +
             
     | 
| 
      
 919 
     | 
    
         
            +
            Note that for some managed nodes, this object may
         
     | 
| 
      
 920 
     | 
    
         
            +
            take on only a subset of the values possible.
         
     | 
| 
      
 921 
     | 
    
         
            +
            Accordingly, it is appropriate for an agent to
         
     | 
| 
      
 922 
     | 
    
         
            +
            return a `badValue' response if a management
         
     | 
| 
      
 923 
     | 
    
         
            +
            station attempts to change this object to an
         
     | 
| 
      
 924 
     | 
    
         
            +
            inappropriate value.""",
         
     | 
| 
      
 925 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 926 
     | 
    
         
            +
                    "ipDefaultTTL" : {
         
     | 
| 
      
 927 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 928 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 929 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.2",
         
     | 
| 
      
 930 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 931 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 932 
     | 
    
         
            +
                            "type" : { "module" :"", "name" : "Integer32"},
         
     | 
| 
      
 933 
     | 
    
         
            +
                        },
         
     | 
| 
      
 934 
     | 
    
         
            +
                        "access" : "readwrite",
         
     | 
| 
      
 935 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 936 
     | 
    
         
            +
                            """The default value inserted into the Time-To-Live
         
     | 
| 
      
 937 
     | 
    
         
            +
            field of the IP header of datagrams originated at
         
     | 
| 
      
 938 
     | 
    
         
            +
            this entity, whenever a TTL value is not supplied
         
     | 
| 
      
 939 
     | 
    
         
            +
            by the transport layer protocol.""",
         
     | 
| 
      
 940 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 941 
     | 
    
         
            +
                    "ipInReceives" : {
         
     | 
| 
      
 942 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 943 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 944 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.3",
         
     | 
| 
      
 945 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 946 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 947 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 948 
     | 
    
         
            +
                        },
         
     | 
| 
      
 949 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 950 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 951 
     | 
    
         
            +
                            """The total number of input datagrams received from
         
     | 
| 
      
 952 
     | 
    
         
            +
            interfaces, including those received in error.""",
         
     | 
| 
      
 953 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 954 
     | 
    
         
            +
                    "ipInHdrErrors" : {
         
     | 
| 
      
 955 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 956 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 957 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.4",
         
     | 
| 
      
 958 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 959 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 960 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 961 
     | 
    
         
            +
                        },
         
     | 
| 
      
 962 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 963 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 964 
     | 
    
         
            +
                            """The number of input datagrams discarded due to
         
     | 
| 
      
 965 
     | 
    
         
            +
            errors in their IP headers, including bad
         
     | 
| 
      
 966 
     | 
    
         
            +
            checksums, version number mismatch, other format
         
     | 
| 
      
 967 
     | 
    
         
            +
            errors, time-to-live exceeded, errors discovered
         
     | 
| 
      
 968 
     | 
    
         
            +
            in processing their IP options, etc.""",
         
     | 
| 
      
 969 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 970 
     | 
    
         
            +
                    "ipInAddrErrors" : {
         
     | 
| 
      
 971 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 972 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 973 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.5",
         
     | 
| 
      
 974 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 975 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 976 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 977 
     | 
    
         
            +
                        },
         
     | 
| 
      
 978 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 979 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 980 
     | 
    
         
            +
                            """The number of input datagrams discarded because
         
     | 
| 
      
 981 
     | 
    
         
            +
            the IP address in their IP header's destination
         
     | 
| 
      
 982 
     | 
    
         
            +
            field was not a valid address to be received at
         
     | 
| 
      
 983 
     | 
    
         
            +
            this entity.  This count includes invalid
         
     | 
| 
      
 984 
     | 
    
         
            +
            addresses (e.g., 0.0.0.0) and addresses of
         
     | 
| 
      
 985 
     | 
    
         
            +
            unsupported Classes (e.g., Class E).  For entities
         
     | 
| 
      
 986 
     | 
    
         
            +
            which are not IP Gateways and therefore do not
         
     | 
| 
      
 987 
     | 
    
         
            +
            forward datagrams, this counter includes datagrams
         
     | 
| 
      
 988 
     | 
    
         
            +
            discarded because the destination address was not
         
     | 
| 
      
 989 
     | 
    
         
            +
            a local address.""",
         
     | 
| 
      
 990 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 991 
     | 
    
         
            +
                    "ipForwDatagrams" : {
         
     | 
| 
      
 992 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 993 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 994 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.6",
         
     | 
| 
      
 995 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 996 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 997 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 998 
     | 
    
         
            +
                        },
         
     | 
| 
      
 999 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1000 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1001 
     | 
    
         
            +
                            """The number of input datagrams for which this
         
     | 
| 
      
 1002 
     | 
    
         
            +
            entity was not their final IP destination, as a
         
     | 
| 
      
 1003 
     | 
    
         
            +
            result of which an attempt was made to find a
         
     | 
| 
      
 1004 
     | 
    
         
            +
            route to forward them to that final destination.
         
     | 
| 
      
 1005 
     | 
    
         
            +
            In entities which do not act as IP Gateways, this
         
     | 
| 
      
 1006 
     | 
    
         
            +
            counter will include only those packets which were
         
     | 
| 
      
 1007 
     | 
    
         
            +
            Source-Routed via this entity, and the Source-
         
     | 
| 
      
 1008 
     | 
    
         
            +
            Route option processing was successful.""",
         
     | 
| 
      
 1009 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 1010 
     | 
    
         
            +
                    "ipInUnknownProtos" : {
         
     | 
| 
      
 1011 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 1012 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1013 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.7",
         
     | 
| 
      
 1014 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1015 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1016 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 1017 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1018 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1019 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1020 
     | 
    
         
            +
                            """The number of locally-addressed datagrams
         
     | 
| 
      
 1021 
     | 
    
         
            +
            received successfully but discarded because of an
         
     | 
| 
      
 1022 
     | 
    
         
            +
            unknown or unsupported protocol.""",
         
     | 
| 
      
 1023 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 1024 
     | 
    
         
            +
                    "ipInDiscards" : {
         
     | 
| 
      
 1025 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 1026 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1027 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.8",
         
     | 
| 
      
 1028 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1029 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1030 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 1031 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1032 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1033 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1034 
     | 
    
         
            +
                            """The number of input IP datagrams for which no
         
     | 
| 
      
 1035 
     | 
    
         
            +
            problems were encountered to prevent their
         
     | 
| 
      
 1036 
     | 
    
         
            +
            continued processing, but which were discarded
         
     | 
| 
      
 1037 
     | 
    
         
            +
            (e.g., for lack of buffer space).  Note that this
         
     | 
| 
      
 1038 
     | 
    
         
            +
            counter does not include any datagrams discarded
         
     | 
| 
      
 1039 
     | 
    
         
            +
            while awaiting re-assembly.""",
         
     | 
| 
      
 1040 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 1041 
     | 
    
         
            +
                    "ipInDelivers" : {
         
     | 
| 
      
 1042 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 1043 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1044 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.9",
         
     | 
| 
      
 1045 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1046 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1047 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 1048 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1049 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1050 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1051 
     | 
    
         
            +
                            """The total number of input datagrams successfully
         
     | 
| 
      
 1052 
     | 
    
         
            +
            delivered to IP user-protocols (including ICMP).""",
         
     | 
| 
      
 1053 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 1054 
     | 
    
         
            +
                    "ipOutRequests" : {
         
     | 
| 
      
 1055 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 1056 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1057 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.10",
         
     | 
| 
      
 1058 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1059 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1060 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 1061 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1062 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1063 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1064 
     | 
    
         
            +
                            """The total number of IP datagrams which local IP
         
     | 
| 
      
 1065 
     | 
    
         
            +
            user-protocols (including ICMP) supplied to IP in
         
     | 
| 
      
 1066 
     | 
    
         
            +
            requests for transmission.  Note that this counter
         
     | 
| 
      
 1067 
     | 
    
         
            +
            does not include any datagrams counted in
         
     | 
| 
      
 1068 
     | 
    
         
            +
            ipForwDatagrams.""",
         
     | 
| 
      
 1069 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 1070 
     | 
    
         
            +
                    "ipOutDiscards" : {
         
     | 
| 
      
 1071 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 1072 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1073 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.11",
         
     | 
| 
      
 1074 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1075 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1076 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 1077 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1078 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1079 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1080 
     | 
    
         
            +
                            """The number of output IP datagrams for which no
         
     | 
| 
      
 1081 
     | 
    
         
            +
             
     | 
| 
      
 1082 
     | 
    
         
            +
            problem was encountered to prevent their
         
     | 
| 
      
 1083 
     | 
    
         
            +
            transmission to their destination, but which were
         
     | 
| 
      
 1084 
     | 
    
         
            +
            discarded (e.g., for lack of buffer space).  Note
         
     | 
| 
      
 1085 
     | 
    
         
            +
            that this counter would include datagrams counted
         
     | 
| 
      
 1086 
     | 
    
         
            +
            in ipForwDatagrams if any such packets met this
         
     | 
| 
      
 1087 
     | 
    
         
            +
            (discretionary) discard criterion.""",
         
     | 
| 
      
 1088 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 1089 
     | 
    
         
            +
                    "ipOutNoRoutes" : {
         
     | 
| 
      
 1090 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 1091 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1092 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.12",
         
     | 
| 
      
 1093 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1094 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1095 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 1096 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1097 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1098 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1099 
     | 
    
         
            +
                            """The number of IP datagrams discarded because no
         
     | 
| 
      
 1100 
     | 
    
         
            +
            route could be found to transmit them to their
         
     | 
| 
      
 1101 
     | 
    
         
            +
            destination.  Note that this counter includes any
         
     | 
| 
      
 1102 
     | 
    
         
            +
            packets counted in ipForwDatagrams which meet this
         
     | 
| 
      
 1103 
     | 
    
         
            +
            `no-route' criterion.  Note that this includes any
         
     | 
| 
      
 1104 
     | 
    
         
            +
            datagarms which a host cannot route because all of
         
     | 
| 
      
 1105 
     | 
    
         
            +
            its default gateways are down.""",
         
     | 
| 
      
 1106 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 1107 
     | 
    
         
            +
                    "ipReasmTimeout" : {
         
     | 
| 
      
 1108 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 1109 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1110 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.13",
         
     | 
| 
      
 1111 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1112 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1113 
     | 
    
         
            +
                            "type" : { "module" :"", "name" : "Integer32"},
         
     | 
| 
      
 1114 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1115 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1116 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1117 
     | 
    
         
            +
                            """The maximum number of seconds which received
         
     | 
| 
      
 1118 
     | 
    
         
            +
            fragments are held while they are awaiting
         
     | 
| 
      
 1119 
     | 
    
         
            +
            reassembly at this entity.""",
         
     | 
| 
      
 1120 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 1121 
     | 
    
         
            +
                    "ipReasmReqds" : {
         
     | 
| 
      
 1122 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 1123 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1124 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.14",
         
     | 
| 
      
 1125 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1126 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1127 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 1128 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1129 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1130 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1131 
     | 
    
         
            +
                            """The number of IP fragments received which needed
         
     | 
| 
      
 1132 
     | 
    
         
            +
            to be reassembled at this entity.""",
         
     | 
| 
      
 1133 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 1134 
     | 
    
         
            +
                    "ipReasmOKs" : {
         
     | 
| 
      
 1135 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 1136 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1137 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.15",
         
     | 
| 
      
 1138 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1139 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1140 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 1141 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1142 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1143 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1144 
     | 
    
         
            +
                            """The number of IP datagrams successfully re-
         
     | 
| 
      
 1145 
     | 
    
         
            +
            assembled.""",
         
     | 
| 
      
 1146 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 1147 
     | 
    
         
            +
                    "ipReasmFails" : {
         
     | 
| 
      
 1148 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 1149 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1150 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.16",
         
     | 
| 
      
 1151 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1152 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1153 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 1154 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1155 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1156 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1157 
     | 
    
         
            +
                            """The number of failures detected by the IP re-
         
     | 
| 
      
 1158 
     | 
    
         
            +
            assembly algorithm (for whatever reason: timed
         
     | 
| 
      
 1159 
     | 
    
         
            +
            out, errors, etc).  Note that this is not
         
     | 
| 
      
 1160 
     | 
    
         
            +
            necessarily a count of discarded IP fragments
         
     | 
| 
      
 1161 
     | 
    
         
            +
            since some algorithms (notably the algorithm in
         
     | 
| 
      
 1162 
     | 
    
         
            +
            RFC 815) can lose track of the number of fragments
         
     | 
| 
      
 1163 
     | 
    
         
            +
            by combining them as they are received.""",
         
     | 
| 
      
 1164 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 1165 
     | 
    
         
            +
                    "ipFragOKs" : {
         
     | 
| 
      
 1166 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 1167 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1168 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.17",
         
     | 
| 
      
 1169 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1170 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1171 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 1172 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1173 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1174 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1175 
     | 
    
         
            +
                            """The number of IP datagrams that have been
         
     | 
| 
      
 1176 
     | 
    
         
            +
            successfully fragmented at this entity.""",
         
     | 
| 
      
 1177 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 1178 
     | 
    
         
            +
                    "ipFragFails" : {
         
     | 
| 
      
 1179 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 1180 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1181 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.18",
         
     | 
| 
      
 1182 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1183 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1184 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 1185 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1186 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1187 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1188 
     | 
    
         
            +
                            """The number of IP datagrams that have been
         
     | 
| 
      
 1189 
     | 
    
         
            +
            discarded because they needed to be fragmented at
         
     | 
| 
      
 1190 
     | 
    
         
            +
            this entity but could not be, e.g., because their
         
     | 
| 
      
 1191 
     | 
    
         
            +
            Don't Fragment flag was set.""",
         
     | 
| 
      
 1192 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 1193 
     | 
    
         
            +
                    "ipFragCreates" : {
         
     | 
| 
      
 1194 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 1195 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1196 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.19",
         
     | 
| 
      
 1197 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1198 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1199 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 1200 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1201 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1202 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1203 
     | 
    
         
            +
                            """The number of IP datagram fragments that have
         
     | 
| 
      
 1204 
     | 
    
         
            +
            been generated as a result of fragmentation at
         
     | 
| 
      
 1205 
     | 
    
         
            +
            this entity.""",
         
     | 
| 
      
 1206 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 1207 
     | 
    
         
            +
                    "ipAddrTable" : {
         
     | 
| 
      
 1208 
     | 
    
         
            +
                        "nodetype" : "table",
         
     | 
| 
      
 1209 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1210 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.20",
         
     | 
| 
      
 1211 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1212 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1213 
     | 
    
         
            +
                            """The table of addressing information relevant to
         
     | 
| 
      
 1214 
     | 
    
         
            +
            this entity's IP addresses.""",
         
     | 
| 
      
 1215 
     | 
    
         
            +
                    }, # table
         
     | 
| 
      
 1216 
     | 
    
         
            +
                    "ipAddrEntry" : {
         
     | 
| 
      
 1217 
     | 
    
         
            +
                        "nodetype" : "row",
         
     | 
| 
      
 1218 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1219 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.20.1",
         
     | 
| 
      
 1220 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1221 
     | 
    
         
            +
                        "linkage" : [
         
     | 
| 
      
 1222 
     | 
    
         
            +
                            "ipAdEntAddr",
         
     | 
| 
      
 1223 
     | 
    
         
            +
                        ],
         
     | 
| 
      
 1224 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1225 
     | 
    
         
            +
                            """The addressing information for one of this
         
     | 
| 
      
 1226 
     | 
    
         
            +
            entity's IP addresses.""",
         
     | 
| 
      
 1227 
     | 
    
         
            +
                    }, # row
         
     | 
| 
      
 1228 
     | 
    
         
            +
                    "ipAdEntAddr" : {
         
     | 
| 
      
 1229 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 1230 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1231 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.20.1.1",
         
     | 
| 
      
 1232 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1233 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1234 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "IpAddress"},
         
     | 
| 
      
 1235 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1236 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1237 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1238 
     | 
    
         
            +
                            """The IP address to which this entry's addressing
         
     | 
| 
      
 1239 
     | 
    
         
            +
            information pertains.""",
         
     | 
| 
      
 1240 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 1241 
     | 
    
         
            +
                    "ipAdEntIfIndex" : {
         
     | 
| 
      
 1242 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 1243 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1244 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.20.1.2",
         
     | 
| 
      
 1245 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1246 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1247 
     | 
    
         
            +
                            "type" : { "module" :"", "name" : "Integer32"},
         
     | 
| 
      
 1248 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1249 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1250 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1251 
     | 
    
         
            +
                            """The index value which uniquely identifies the
         
     | 
| 
      
 1252 
     | 
    
         
            +
            interface to which this entry is applicable.  The
         
     | 
| 
      
 1253 
     | 
    
         
            +
            interface identified by a particular value of this
         
     | 
| 
      
 1254 
     | 
    
         
            +
            index is the same interface as identified by the
         
     | 
| 
      
 1255 
     | 
    
         
            +
            same value of ifIndex.""",
         
     | 
| 
      
 1256 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 1257 
     | 
    
         
            +
                    "ipAdEntNetMask" : {
         
     | 
| 
      
 1258 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 1259 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1260 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.20.1.3",
         
     | 
| 
      
 1261 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1262 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1263 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "IpAddress"},
         
     | 
| 
      
 1264 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1265 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1266 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1267 
     | 
    
         
            +
                            """The subnet mask associated with the IP address of
         
     | 
| 
      
 1268 
     | 
    
         
            +
            this entry.  The value of the mask is an IP
         
     | 
| 
      
 1269 
     | 
    
         
            +
            address with all the network bits set to 1 and all
         
     | 
| 
      
 1270 
     | 
    
         
            +
            the hosts bits set to 0.""",
         
     | 
| 
      
 1271 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 1272 
     | 
    
         
            +
                    "ipAdEntBcastAddr" : {
         
     | 
| 
      
 1273 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 1274 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1275 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.20.1.4",
         
     | 
| 
      
 1276 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1277 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1278 
     | 
    
         
            +
                            "type" : { "module" :"", "name" : "Integer32"},
         
     | 
| 
      
 1279 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1280 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1281 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1282 
     | 
    
         
            +
                            """The value of the least-significant bit in the IP
         
     | 
| 
      
 1283 
     | 
    
         
            +
            broadcast address used for sending datagrams on
         
     | 
| 
      
 1284 
     | 
    
         
            +
            the (logical) interface associated with the IP
         
     | 
| 
      
 1285 
     | 
    
         
            +
            address of this entry.  For example, when the
         
     | 
| 
      
 1286 
     | 
    
         
            +
            Internet standard all-ones broadcast address is
         
     | 
| 
      
 1287 
     | 
    
         
            +
            used, the value will be 1.  This value applies to
         
     | 
| 
      
 1288 
     | 
    
         
            +
            both the subnet and network broadcasts addresses
         
     | 
| 
      
 1289 
     | 
    
         
            +
            used by the entity on this (logical) interface.""",
         
     | 
| 
      
 1290 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 1291 
     | 
    
         
            +
                    "ipAdEntReasmMaxSize" : {
         
     | 
| 
      
 1292 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 1293 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1294 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.20.1.5",
         
     | 
| 
      
 1295 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1296 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1297 
     | 
    
         
            +
                            "type" :                 {
         
     | 
| 
      
 1298 
     | 
    
         
            +
                                "basetype" : "Integer32",
         
     | 
| 
      
 1299 
     | 
    
         
            +
                                "ranges" : [
         
     | 
| 
      
 1300 
     | 
    
         
            +
                                {
         
     | 
| 
      
 1301 
     | 
    
         
            +
                                    "min" : "0",
         
     | 
| 
      
 1302 
     | 
    
         
            +
                                    "max" : "65535"
         
     | 
| 
      
 1303 
     | 
    
         
            +
                                },
         
     | 
| 
      
 1304 
     | 
    
         
            +
                                ],
         
     | 
| 
      
 1305 
     | 
    
         
            +
                                "range" : {
         
     | 
| 
      
 1306 
     | 
    
         
            +
                                    "min" : "0",
         
     | 
| 
      
 1307 
     | 
    
         
            +
                                    "max" : "65535"
         
     | 
| 
      
 1308 
     | 
    
         
            +
                                },
         
     | 
| 
      
 1309 
     | 
    
         
            +
                            },
         
     | 
| 
      
 1310 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1311 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1312 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1313 
     | 
    
         
            +
                            """The size of the largest IP datagram which this
         
     | 
| 
      
 1314 
     | 
    
         
            +
            entity can re-assemble from incoming IP fragmented
         
     | 
| 
      
 1315 
     | 
    
         
            +
            datagrams received on this interface.""",
         
     | 
| 
      
 1316 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 1317 
     | 
    
         
            +
                    "ipRouteTable" : {
         
     | 
| 
      
 1318 
     | 
    
         
            +
                        "nodetype" : "table",
         
     | 
| 
      
 1319 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1320 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.21",
         
     | 
| 
      
 1321 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1322 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1323 
     | 
    
         
            +
                            """This entity's IP Routing table.""",
         
     | 
| 
      
 1324 
     | 
    
         
            +
                    }, # table
         
     | 
| 
      
 1325 
     | 
    
         
            +
                    "ipRouteEntry" : {
         
     | 
| 
      
 1326 
     | 
    
         
            +
                        "nodetype" : "row",
         
     | 
| 
      
 1327 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1328 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.21.1",
         
     | 
| 
      
 1329 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1330 
     | 
    
         
            +
                        "linkage" : [
         
     | 
| 
      
 1331 
     | 
    
         
            +
                            "ipRouteDest",
         
     | 
| 
      
 1332 
     | 
    
         
            +
                        ],
         
     | 
| 
      
 1333 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1334 
     | 
    
         
            +
                            """A route to a particular destination.""",
         
     | 
| 
      
 1335 
     | 
    
         
            +
                    }, # row
         
     | 
| 
      
 1336 
     | 
    
         
            +
                    "ipRouteDest" : {
         
     | 
| 
      
 1337 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 1338 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1339 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.21.1.1",
         
     | 
| 
      
 1340 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1341 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1342 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "IpAddress"},
         
     | 
| 
      
 1343 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1344 
     | 
    
         
            +
                        "access" : "readwrite",
         
     | 
| 
      
 1345 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1346 
     | 
    
         
            +
                            """The destination IP address of this route.  An
         
     | 
| 
      
 1347 
     | 
    
         
            +
            entry with a value of 0.0.0.0 is considered a
         
     | 
| 
      
 1348 
     | 
    
         
            +
            default route.  Multiple routes to a single
         
     | 
| 
      
 1349 
     | 
    
         
            +
            destination can appear in the table, but access to
         
     | 
| 
      
 1350 
     | 
    
         
            +
            such multiple entries is dependent on the table-
         
     | 
| 
      
 1351 
     | 
    
         
            +
            access mechanisms defined by the network
         
     | 
| 
      
 1352 
     | 
    
         
            +
            management protocol in use.""",
         
     | 
| 
      
 1353 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 1354 
     | 
    
         
            +
                    "ipRouteIfIndex" : {
         
     | 
| 
      
 1355 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 1356 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1357 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.21.1.2",
         
     | 
| 
      
 1358 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1359 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1360 
     | 
    
         
            +
                            "type" : { "module" :"", "name" : "Integer32"},
         
     | 
| 
      
 1361 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1362 
     | 
    
         
            +
                        "access" : "readwrite",
         
     | 
| 
      
 1363 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1364 
     | 
    
         
            +
                            """The index value which uniquely identifies the
         
     | 
| 
      
 1365 
     | 
    
         
            +
            local interface through which the next hop of this
         
     | 
| 
      
 1366 
     | 
    
         
            +
            route should be reached.  The interface identified
         
     | 
| 
      
 1367 
     | 
    
         
            +
            by a particular value of this index is the same
         
     | 
| 
      
 1368 
     | 
    
         
            +
            interface as identified by the same value of
         
     | 
| 
      
 1369 
     | 
    
         
            +
            ifIndex.""",
         
     | 
| 
      
 1370 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 1371 
     | 
    
         
            +
                    "ipRouteMetric1" : {
         
     | 
| 
      
 1372 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 1373 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1374 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.21.1.3",
         
     | 
| 
      
 1375 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1376 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1377 
     | 
    
         
            +
                            "type" : { "module" :"", "name" : "Integer32"},
         
     | 
| 
      
 1378 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1379 
     | 
    
         
            +
                        "access" : "readwrite",
         
     | 
| 
      
 1380 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1381 
     | 
    
         
            +
                            """The primary routing metric for this route.  The
         
     | 
| 
      
 1382 
     | 
    
         
            +
            semantics of this metric are determined by the
         
     | 
| 
      
 1383 
     | 
    
         
            +
            routing-protocol specified in the route's
         
     | 
| 
      
 1384 
     | 
    
         
            +
            ipRouteProto value.  If this metric is not used,
         
     | 
| 
      
 1385 
     | 
    
         
            +
            its value should be set to -1.""",
         
     | 
| 
      
 1386 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 1387 
     | 
    
         
            +
                    "ipRouteMetric2" : {
         
     | 
| 
      
 1388 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 1389 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1390 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.21.1.4",
         
     | 
| 
      
 1391 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1392 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1393 
     | 
    
         
            +
                            "type" : { "module" :"", "name" : "Integer32"},
         
     | 
| 
      
 1394 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1395 
     | 
    
         
            +
                        "access" : "readwrite",
         
     | 
| 
      
 1396 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1397 
     | 
    
         
            +
                            """An alternate routing metric for this route.  The
         
     | 
| 
      
 1398 
     | 
    
         
            +
            semantics of this metric are determined by the
         
     | 
| 
      
 1399 
     | 
    
         
            +
            routing-protocol specified in the route's
         
     | 
| 
      
 1400 
     | 
    
         
            +
            ipRouteProto value.  If this metric is not used,
         
     | 
| 
      
 1401 
     | 
    
         
            +
            its value should be set to -1.""",
         
     | 
| 
      
 1402 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 1403 
     | 
    
         
            +
                    "ipRouteMetric3" : {
         
     | 
| 
      
 1404 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 1405 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1406 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.21.1.5",
         
     | 
| 
      
 1407 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1408 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1409 
     | 
    
         
            +
                            "type" : { "module" :"", "name" : "Integer32"},
         
     | 
| 
      
 1410 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1411 
     | 
    
         
            +
                        "access" : "readwrite",
         
     | 
| 
      
 1412 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1413 
     | 
    
         
            +
                            """An alternate routing metric for this route.  The
         
     | 
| 
      
 1414 
     | 
    
         
            +
            semantics of this metric are determined by the
         
     | 
| 
      
 1415 
     | 
    
         
            +
            routing-protocol specified in the route's
         
     | 
| 
      
 1416 
     | 
    
         
            +
            ipRouteProto value.  If this metric is not used,
         
     | 
| 
      
 1417 
     | 
    
         
            +
            its value should be set to -1.""",
         
     | 
| 
      
 1418 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 1419 
     | 
    
         
            +
                    "ipRouteMetric4" : {
         
     | 
| 
      
 1420 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 1421 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1422 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.21.1.6",
         
     | 
| 
      
 1423 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1424 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1425 
     | 
    
         
            +
                            "type" : { "module" :"", "name" : "Integer32"},
         
     | 
| 
      
 1426 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1427 
     | 
    
         
            +
                        "access" : "readwrite",
         
     | 
| 
      
 1428 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1429 
     | 
    
         
            +
                            """An alternate routing metric for this route.  The
         
     | 
| 
      
 1430 
     | 
    
         
            +
            semantics of this metric are determined by the
         
     | 
| 
      
 1431 
     | 
    
         
            +
            routing-protocol specified in the route's
         
     | 
| 
      
 1432 
     | 
    
         
            +
            ipRouteProto value.  If this metric is not used,
         
     | 
| 
      
 1433 
     | 
    
         
            +
            its value should be set to -1.""",
         
     | 
| 
      
 1434 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 1435 
     | 
    
         
            +
                    "ipRouteNextHop" : {
         
     | 
| 
      
 1436 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 1437 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1438 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.21.1.7",
         
     | 
| 
      
 1439 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1440 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1441 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "IpAddress"},
         
     | 
| 
      
 1442 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1443 
     | 
    
         
            +
                        "access" : "readwrite",
         
     | 
| 
      
 1444 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1445 
     | 
    
         
            +
                            """The IP address of the next hop of this route.
         
     | 
| 
      
 1446 
     | 
    
         
            +
            (In the case of a route bound to an interface
         
     | 
| 
      
 1447 
     | 
    
         
            +
            which is realized via a broadcast media, the value
         
     | 
| 
      
 1448 
     | 
    
         
            +
            of this field is the agent's IP address on that
         
     | 
| 
      
 1449 
     | 
    
         
            +
            interface.)""",
         
     | 
| 
      
 1450 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 1451 
     | 
    
         
            +
                    "ipRouteType" : {
         
     | 
| 
      
 1452 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 1453 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1454 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.21.1.8",
         
     | 
| 
      
 1455 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1456 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1457 
     | 
    
         
            +
                            "type" :                 {
         
     | 
| 
      
 1458 
     | 
    
         
            +
                                "basetype" : "Enumeration",
         
     | 
| 
      
 1459 
     | 
    
         
            +
                                "other" : {
         
     | 
| 
      
 1460 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 1461 
     | 
    
         
            +
                                    "number" : "1"
         
     | 
| 
      
 1462 
     | 
    
         
            +
                                },
         
     | 
| 
      
 1463 
     | 
    
         
            +
                                "invalid" : {
         
     | 
| 
      
 1464 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 1465 
     | 
    
         
            +
                                    "number" : "2"
         
     | 
| 
      
 1466 
     | 
    
         
            +
                                },
         
     | 
| 
      
 1467 
     | 
    
         
            +
                                "direct" : {
         
     | 
| 
      
 1468 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 1469 
     | 
    
         
            +
                                    "number" : "3"
         
     | 
| 
      
 1470 
     | 
    
         
            +
                                },
         
     | 
| 
      
 1471 
     | 
    
         
            +
                                "indirect" : {
         
     | 
| 
      
 1472 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 1473 
     | 
    
         
            +
                                    "number" : "4"
         
     | 
| 
      
 1474 
     | 
    
         
            +
                                },
         
     | 
| 
      
 1475 
     | 
    
         
            +
                            },
         
     | 
| 
      
 1476 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1477 
     | 
    
         
            +
                        "access" : "readwrite",
         
     | 
| 
      
 1478 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1479 
     | 
    
         
            +
                            """The type of route.  Note that the values
         
     | 
| 
      
 1480 
     | 
    
         
            +
            direct(3) and indirect(4) refer to the notion of
         
     | 
| 
      
 1481 
     | 
    
         
            +
            direct and indirect routing in the IP
         
     | 
| 
      
 1482 
     | 
    
         
            +
            architecture.
         
     | 
| 
      
 1483 
     | 
    
         
            +
             
     | 
| 
      
 1484 
     | 
    
         
            +
            Setting this object to the value invalid(2) has
         
     | 
| 
      
 1485 
     | 
    
         
            +
            the effect of invalidating the corresponding entry
         
     | 
| 
      
 1486 
     | 
    
         
            +
            in the ipRouteTable object.  That is, it
         
     | 
| 
      
 1487 
     | 
    
         
            +
            effectively dissasociates the destination
         
     | 
| 
      
 1488 
     | 
    
         
            +
            identified with said entry from the route
         
     | 
| 
      
 1489 
     | 
    
         
            +
            identified with said entry.  It is an
         
     | 
| 
      
 1490 
     | 
    
         
            +
            implementation-specific matter as to whether the
         
     | 
| 
      
 1491 
     | 
    
         
            +
            agent removes an invalidated entry from the table.
         
     | 
| 
      
 1492 
     | 
    
         
            +
            Accordingly, management stations must be prepared
         
     | 
| 
      
 1493 
     | 
    
         
            +
            to receive tabular information from agents that
         
     | 
| 
      
 1494 
     | 
    
         
            +
            corresponds to entries not currently in use.
         
     | 
| 
      
 1495 
     | 
    
         
            +
            Proper interpretation of such entries requires
         
     | 
| 
      
 1496 
     | 
    
         
            +
            examination of the relevant ipRouteType object.""",
         
     | 
| 
      
 1497 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 1498 
     | 
    
         
            +
                    "ipRouteProto" : {
         
     | 
| 
      
 1499 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 1500 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1501 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.21.1.9",
         
     | 
| 
      
 1502 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1503 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1504 
     | 
    
         
            +
                            "type" :                 {
         
     | 
| 
      
 1505 
     | 
    
         
            +
                                "basetype" : "Enumeration",
         
     | 
| 
      
 1506 
     | 
    
         
            +
                                "other" : {
         
     | 
| 
      
 1507 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 1508 
     | 
    
         
            +
                                    "number" : "1"
         
     | 
| 
      
 1509 
     | 
    
         
            +
                                },
         
     | 
| 
      
 1510 
     | 
    
         
            +
                                "local" : {
         
     | 
| 
      
 1511 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 1512 
     | 
    
         
            +
                                    "number" : "2"
         
     | 
| 
      
 1513 
     | 
    
         
            +
                                },
         
     | 
| 
      
 1514 
     | 
    
         
            +
                                "netmgmt" : {
         
     | 
| 
      
 1515 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 1516 
     | 
    
         
            +
                                    "number" : "3"
         
     | 
| 
      
 1517 
     | 
    
         
            +
                                },
         
     | 
| 
      
 1518 
     | 
    
         
            +
                                "icmp" : {
         
     | 
| 
      
 1519 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 1520 
     | 
    
         
            +
                                    "number" : "4"
         
     | 
| 
      
 1521 
     | 
    
         
            +
                                },
         
     | 
| 
      
 1522 
     | 
    
         
            +
                                "egp" : {
         
     | 
| 
      
 1523 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 1524 
     | 
    
         
            +
                                    "number" : "5"
         
     | 
| 
      
 1525 
     | 
    
         
            +
                                },
         
     | 
| 
      
 1526 
     | 
    
         
            +
                                "ggp" : {
         
     | 
| 
      
 1527 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 1528 
     | 
    
         
            +
                                    "number" : "6"
         
     | 
| 
      
 1529 
     | 
    
         
            +
                                },
         
     | 
| 
      
 1530 
     | 
    
         
            +
                                "hello" : {
         
     | 
| 
      
 1531 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 1532 
     | 
    
         
            +
                                    "number" : "7"
         
     | 
| 
      
 1533 
     | 
    
         
            +
                                },
         
     | 
| 
      
 1534 
     | 
    
         
            +
                                "rip" : {
         
     | 
| 
      
 1535 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 1536 
     | 
    
         
            +
                                    "number" : "8"
         
     | 
| 
      
 1537 
     | 
    
         
            +
                                },
         
     | 
| 
      
 1538 
     | 
    
         
            +
                                "is-is" : {
         
     | 
| 
      
 1539 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 1540 
     | 
    
         
            +
                                    "number" : "9"
         
     | 
| 
      
 1541 
     | 
    
         
            +
                                },
         
     | 
| 
      
 1542 
     | 
    
         
            +
                                "es-is" : {
         
     | 
| 
      
 1543 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 1544 
     | 
    
         
            +
                                    "number" : "10"
         
     | 
| 
      
 1545 
     | 
    
         
            +
                                },
         
     | 
| 
      
 1546 
     | 
    
         
            +
                                "ciscoIgrp" : {
         
     | 
| 
      
 1547 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 1548 
     | 
    
         
            +
                                    "number" : "11"
         
     | 
| 
      
 1549 
     | 
    
         
            +
                                },
         
     | 
| 
      
 1550 
     | 
    
         
            +
                                "bbnSpfIgp" : {
         
     | 
| 
      
 1551 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 1552 
     | 
    
         
            +
                                    "number" : "12"
         
     | 
| 
      
 1553 
     | 
    
         
            +
                                },
         
     | 
| 
      
 1554 
     | 
    
         
            +
                                "ospf" : {
         
     | 
| 
      
 1555 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 1556 
     | 
    
         
            +
                                    "number" : "13"
         
     | 
| 
      
 1557 
     | 
    
         
            +
                                },
         
     | 
| 
      
 1558 
     | 
    
         
            +
                                "bgp" : {
         
     | 
| 
      
 1559 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 1560 
     | 
    
         
            +
                                    "number" : "14"
         
     | 
| 
      
 1561 
     | 
    
         
            +
                                },
         
     | 
| 
      
 1562 
     | 
    
         
            +
                            },
         
     | 
| 
      
 1563 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1564 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1565 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1566 
     | 
    
         
            +
                            """The routing mechanism via which this route was
         
     | 
| 
      
 1567 
     | 
    
         
            +
            learned.  Inclusion of values for gateway routing
         
     | 
| 
      
 1568 
     | 
    
         
            +
            protocols is not intended to imply that hosts
         
     | 
| 
      
 1569 
     | 
    
         
            +
            should support those protocols.""",
         
     | 
| 
      
 1570 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 1571 
     | 
    
         
            +
                    "ipRouteAge" : {
         
     | 
| 
      
 1572 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 1573 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1574 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.21.1.10",
         
     | 
| 
      
 1575 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1576 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1577 
     | 
    
         
            +
                            "type" : { "module" :"", "name" : "Integer32"},
         
     | 
| 
      
 1578 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1579 
     | 
    
         
            +
                        "access" : "readwrite",
         
     | 
| 
      
 1580 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1581 
     | 
    
         
            +
                            """The number of seconds since this route was last
         
     | 
| 
      
 1582 
     | 
    
         
            +
            updated or otherwise determined to be correct.
         
     | 
| 
      
 1583 
     | 
    
         
            +
            Note that no semantics of `too old' can be implied
         
     | 
| 
      
 1584 
     | 
    
         
            +
            except through knowledge of the routing protocol
         
     | 
| 
      
 1585 
     | 
    
         
            +
            by which the route was learned.""",
         
     | 
| 
      
 1586 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 1587 
     | 
    
         
            +
                    "ipRouteMask" : {
         
     | 
| 
      
 1588 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 1589 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1590 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.21.1.11",
         
     | 
| 
      
 1591 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1592 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1593 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "IpAddress"},
         
     | 
| 
      
 1594 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1595 
     | 
    
         
            +
                        "access" : "readwrite",
         
     | 
| 
      
 1596 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1597 
     | 
    
         
            +
                            """Indicate the mask to be logical-ANDed with the
         
     | 
| 
      
 1598 
     | 
    
         
            +
            destination address before being compared to the
         
     | 
| 
      
 1599 
     | 
    
         
            +
            value in the ipRouteDest field.  For those systems
         
     | 
| 
      
 1600 
     | 
    
         
            +
            that do not support arbitrary subnet masks, an
         
     | 
| 
      
 1601 
     | 
    
         
            +
            agent constructs the value of the ipRouteMask by
         
     | 
| 
      
 1602 
     | 
    
         
            +
            determining whether the value of the correspondent
         
     | 
| 
      
 1603 
     | 
    
         
            +
            ipRouteDest field belong to a class-A, B, or C
         
     | 
| 
      
 1604 
     | 
    
         
            +
            network, and then using one of:
         
     | 
| 
      
 1605 
     | 
    
         
            +
             
     | 
| 
      
 1606 
     | 
    
         
            +
                 mask           network
         
     | 
| 
      
 1607 
     | 
    
         
            +
                 255.0.0.0      class-A
         
     | 
| 
      
 1608 
     | 
    
         
            +
                 255.255.0.0    class-B
         
     | 
| 
      
 1609 
     | 
    
         
            +
                 255.255.255.0  class-C
         
     | 
| 
      
 1610 
     | 
    
         
            +
             
     | 
| 
      
 1611 
     | 
    
         
            +
            If the value of the ipRouteDest is 0.0.0.0 (a
         
     | 
| 
      
 1612 
     | 
    
         
            +
            default route), then the mask value is also
         
     | 
| 
      
 1613 
     | 
    
         
            +
            0.0.0.0.  It should be noted that all IP routing
         
     | 
| 
      
 1614 
     | 
    
         
            +
            subsystems implicitly use this mechanism.""",
         
     | 
| 
      
 1615 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 1616 
     | 
    
         
            +
                    "ipRouteMetric5" : {
         
     | 
| 
      
 1617 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 1618 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1619 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.21.1.12",
         
     | 
| 
      
 1620 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1621 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1622 
     | 
    
         
            +
                            "type" : { "module" :"", "name" : "Integer32"},
         
     | 
| 
      
 1623 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1624 
     | 
    
         
            +
                        "access" : "readwrite",
         
     | 
| 
      
 1625 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1626 
     | 
    
         
            +
                            """An alternate routing metric for this route.  The
         
     | 
| 
      
 1627 
     | 
    
         
            +
            semantics of this metric are determined by the
         
     | 
| 
      
 1628 
     | 
    
         
            +
            routing-protocol specified in the route's
         
     | 
| 
      
 1629 
     | 
    
         
            +
            ipRouteProto value.  If this metric is not used,
         
     | 
| 
      
 1630 
     | 
    
         
            +
            its value should be set to -1.""",
         
     | 
| 
      
 1631 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 1632 
     | 
    
         
            +
                    "ipRouteInfo" : {
         
     | 
| 
      
 1633 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 1634 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1635 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.21.1.13",
         
     | 
| 
      
 1636 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1637 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1638 
     | 
    
         
            +
                            "type" : { "module" :"", "name" : "ObjectIdentifier"},
         
     | 
| 
      
 1639 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1640 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1641 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1642 
     | 
    
         
            +
                            """A reference to MIB definitions specific to the
         
     | 
| 
      
 1643 
     | 
    
         
            +
            particular routing protocol which is responsible
         
     | 
| 
      
 1644 
     | 
    
         
            +
            for this route, as determined by the value
         
     | 
| 
      
 1645 
     | 
    
         
            +
            specified in the route's ipRouteProto value.  If
         
     | 
| 
      
 1646 
     | 
    
         
            +
            this information is not present, its value should
         
     | 
| 
      
 1647 
     | 
    
         
            +
            be set to the OBJECT IDENTIFIER { 0 0 }, which is
         
     | 
| 
      
 1648 
     | 
    
         
            +
            a syntatically valid object identifier, and any
         
     | 
| 
      
 1649 
     | 
    
         
            +
            conformant implementation of ASN.1 and BER must be
         
     | 
| 
      
 1650 
     | 
    
         
            +
            able to generate and recognize this value.""",
         
     | 
| 
      
 1651 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 1652 
     | 
    
         
            +
                    "ipNetToMediaTable" : {
         
     | 
| 
      
 1653 
     | 
    
         
            +
                        "nodetype" : "table",
         
     | 
| 
      
 1654 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1655 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.22",
         
     | 
| 
      
 1656 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1657 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1658 
     | 
    
         
            +
                            """The IP Address Translation table used for mapping
         
     | 
| 
      
 1659 
     | 
    
         
            +
            from IP addresses to physical addresses.""",
         
     | 
| 
      
 1660 
     | 
    
         
            +
                    }, # table
         
     | 
| 
      
 1661 
     | 
    
         
            +
                    "ipNetToMediaEntry" : {
         
     | 
| 
      
 1662 
     | 
    
         
            +
                        "nodetype" : "row",
         
     | 
| 
      
 1663 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1664 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.22.1",
         
     | 
| 
      
 1665 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1666 
     | 
    
         
            +
                        "linkage" : [
         
     | 
| 
      
 1667 
     | 
    
         
            +
                            "ipNetToMediaIfIndex",
         
     | 
| 
      
 1668 
     | 
    
         
            +
                            "ipNetToMediaNetAddress",
         
     | 
| 
      
 1669 
     | 
    
         
            +
                        ],
         
     | 
| 
      
 1670 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1671 
     | 
    
         
            +
                            """Each entry contains one IpAddress to `physical'
         
     | 
| 
      
 1672 
     | 
    
         
            +
            address equivalence.""",
         
     | 
| 
      
 1673 
     | 
    
         
            +
                    }, # row
         
     | 
| 
      
 1674 
     | 
    
         
            +
                    "ipNetToMediaIfIndex" : {
         
     | 
| 
      
 1675 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 1676 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1677 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.22.1.1",
         
     | 
| 
      
 1678 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1679 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1680 
     | 
    
         
            +
                            "type" : { "module" :"", "name" : "Integer32"},
         
     | 
| 
      
 1681 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1682 
     | 
    
         
            +
                        "access" : "readwrite",
         
     | 
| 
      
 1683 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1684 
     | 
    
         
            +
                            """The interface on which this entry's equivalence
         
     | 
| 
      
 1685 
     | 
    
         
            +
            is effective.  The interface identified by a
         
     | 
| 
      
 1686 
     | 
    
         
            +
            particular value of this index is the same
         
     | 
| 
      
 1687 
     | 
    
         
            +
            interface as identified by the same value of
         
     | 
| 
      
 1688 
     | 
    
         
            +
            ifIndex.""",
         
     | 
| 
      
 1689 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 1690 
     | 
    
         
            +
                    "ipNetToMediaPhysAddress" : {
         
     | 
| 
      
 1691 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 1692 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1693 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.22.1.2",
         
     | 
| 
      
 1694 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1695 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1696 
     | 
    
         
            +
                            "type" : { "module" :"RFC1213-MIB", "name" : "PhysAddress"},
         
     | 
| 
      
 1697 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1698 
     | 
    
         
            +
                        "access" : "readwrite",
         
     | 
| 
      
 1699 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1700 
     | 
    
         
            +
                            """The media-dependent `physical' address.""",
         
     | 
| 
      
 1701 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 1702 
     | 
    
         
            +
                    "ipNetToMediaNetAddress" : {
         
     | 
| 
      
 1703 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 1704 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1705 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.22.1.3",
         
     | 
| 
      
 1706 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1707 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1708 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "IpAddress"},
         
     | 
| 
      
 1709 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1710 
     | 
    
         
            +
                        "access" : "readwrite",
         
     | 
| 
      
 1711 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1712 
     | 
    
         
            +
                            """The IpAddress corresponding to the media-
         
     | 
| 
      
 1713 
     | 
    
         
            +
            dependent `physical' address.""",
         
     | 
| 
      
 1714 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 1715 
     | 
    
         
            +
                    "ipNetToMediaType" : {
         
     | 
| 
      
 1716 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 1717 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1718 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.22.1.4",
         
     | 
| 
      
 1719 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1720 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1721 
     | 
    
         
            +
                            "type" :                 {
         
     | 
| 
      
 1722 
     | 
    
         
            +
                                "basetype" : "Enumeration",
         
     | 
| 
      
 1723 
     | 
    
         
            +
                                "other" : {
         
     | 
| 
      
 1724 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 1725 
     | 
    
         
            +
                                    "number" : "1"
         
     | 
| 
      
 1726 
     | 
    
         
            +
                                },
         
     | 
| 
      
 1727 
     | 
    
         
            +
                                "invalid" : {
         
     | 
| 
      
 1728 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 1729 
     | 
    
         
            +
                                    "number" : "2"
         
     | 
| 
      
 1730 
     | 
    
         
            +
                                },
         
     | 
| 
      
 1731 
     | 
    
         
            +
                                "dynamic" : {
         
     | 
| 
      
 1732 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 1733 
     | 
    
         
            +
                                    "number" : "3"
         
     | 
| 
      
 1734 
     | 
    
         
            +
                                },
         
     | 
| 
      
 1735 
     | 
    
         
            +
                                "static" : {
         
     | 
| 
      
 1736 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 1737 
     | 
    
         
            +
                                    "number" : "4"
         
     | 
| 
      
 1738 
     | 
    
         
            +
                                },
         
     | 
| 
      
 1739 
     | 
    
         
            +
                            },
         
     | 
| 
      
 1740 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1741 
     | 
    
         
            +
                        "access" : "readwrite",
         
     | 
| 
      
 1742 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1743 
     | 
    
         
            +
                            """The type of mapping.
         
     | 
| 
      
 1744 
     | 
    
         
            +
             
     | 
| 
      
 1745 
     | 
    
         
            +
            Setting this object to the value invalid(2) has
         
     | 
| 
      
 1746 
     | 
    
         
            +
            the effect of invalidating the corresponding entry
         
     | 
| 
      
 1747 
     | 
    
         
            +
            in the ipNetToMediaTable.  That is, it effectively
         
     | 
| 
      
 1748 
     | 
    
         
            +
            dissasociates the interface identified with said
         
     | 
| 
      
 1749 
     | 
    
         
            +
            entry from the mapping identified with said entry.
         
     | 
| 
      
 1750 
     | 
    
         
            +
            It is an implementation-specific matter as to
         
     | 
| 
      
 1751 
     | 
    
         
            +
            whether the agent removes an invalidated entry
         
     | 
| 
      
 1752 
     | 
    
         
            +
            from the table.  Accordingly, management stations
         
     | 
| 
      
 1753 
     | 
    
         
            +
            must be prepared to receive tabular information
         
     | 
| 
      
 1754 
     | 
    
         
            +
            from agents that corresponds to entries not
         
     | 
| 
      
 1755 
     | 
    
         
            +
            currently in use.  Proper interpretation of such
         
     | 
| 
      
 1756 
     | 
    
         
            +
            entries requires examination of the relevant
         
     | 
| 
      
 1757 
     | 
    
         
            +
            ipNetToMediaType object.""",
         
     | 
| 
      
 1758 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 1759 
     | 
    
         
            +
                    "ipRoutingDiscards" : {
         
     | 
| 
      
 1760 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 1761 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1762 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.4.23",
         
     | 
| 
      
 1763 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1764 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1765 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 1766 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1767 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1768 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1769 
     | 
    
         
            +
                            """The number of routing entries which were chosen
         
     | 
| 
      
 1770 
     | 
    
         
            +
            to be discarded even though they are valid.  One
         
     | 
| 
      
 1771 
     | 
    
         
            +
            possible reason for discarding such an entry could
         
     | 
| 
      
 1772 
     | 
    
         
            +
            be to free-up buffer space for other routing
         
     | 
| 
      
 1773 
     | 
    
         
            +
             
     | 
| 
      
 1774 
     | 
    
         
            +
            entries.""",
         
     | 
| 
      
 1775 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 1776 
     | 
    
         
            +
                    "icmp" : {
         
     | 
| 
      
 1777 
     | 
    
         
            +
                        "nodetype" : "node",
         
     | 
| 
      
 1778 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1779 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.5",
         
     | 
| 
      
 1780 
     | 
    
         
            +
                    }, # node
         
     | 
| 
      
 1781 
     | 
    
         
            +
                    "icmpInMsgs" : {
         
     | 
| 
      
 1782 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 1783 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1784 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.5.1",
         
     | 
| 
      
 1785 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1786 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1787 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 1788 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1789 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1790 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1791 
     | 
    
         
            +
                            """The total number of ICMP messages which the
         
     | 
| 
      
 1792 
     | 
    
         
            +
            entity received.  Note that this counter includes
         
     | 
| 
      
 1793 
     | 
    
         
            +
            all those counted by icmpInErrors.""",
         
     | 
| 
      
 1794 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 1795 
     | 
    
         
            +
                    "icmpInErrors" : {
         
     | 
| 
      
 1796 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 1797 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1798 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.5.2",
         
     | 
| 
      
 1799 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1800 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1801 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 1802 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1803 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1804 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1805 
     | 
    
         
            +
                            """The number of ICMP messages which the entity
         
     | 
| 
      
 1806 
     | 
    
         
            +
            received but determined as having ICMP-specific
         
     | 
| 
      
 1807 
     | 
    
         
            +
            errors (bad ICMP checksums, bad length, etc.).""",
         
     | 
| 
      
 1808 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 1809 
     | 
    
         
            +
                    "icmpInDestUnreachs" : {
         
     | 
| 
      
 1810 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 1811 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1812 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.5.3",
         
     | 
| 
      
 1813 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1814 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1815 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 1816 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1817 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1818 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1819 
     | 
    
         
            +
                            """The number of ICMP Destination Unreachable
         
     | 
| 
      
 1820 
     | 
    
         
            +
            messages received.""",
         
     | 
| 
      
 1821 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 1822 
     | 
    
         
            +
                    "icmpInTimeExcds" : {
         
     | 
| 
      
 1823 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 1824 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1825 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.5.4",
         
     | 
| 
      
 1826 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1827 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1828 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 1829 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1830 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1831 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1832 
     | 
    
         
            +
                            """The number of ICMP Time Exceeded messages
         
     | 
| 
      
 1833 
     | 
    
         
            +
            received.""",
         
     | 
| 
      
 1834 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 1835 
     | 
    
         
            +
                    "icmpInParmProbs" : {
         
     | 
| 
      
 1836 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 1837 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1838 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.5.5",
         
     | 
| 
      
 1839 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1840 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1841 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 1842 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1843 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1844 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1845 
     | 
    
         
            +
                            """The number of ICMP Parameter Problem messages
         
     | 
| 
      
 1846 
     | 
    
         
            +
            received.""",
         
     | 
| 
      
 1847 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 1848 
     | 
    
         
            +
                    "icmpInSrcQuenchs" : {
         
     | 
| 
      
 1849 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 1850 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1851 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.5.6",
         
     | 
| 
      
 1852 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1853 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1854 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 1855 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1856 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1857 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1858 
     | 
    
         
            +
                            """The number of ICMP Source Quench messages
         
     | 
| 
      
 1859 
     | 
    
         
            +
            received.""",
         
     | 
| 
      
 1860 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 1861 
     | 
    
         
            +
                    "icmpInRedirects" : {
         
     | 
| 
      
 1862 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 1863 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1864 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.5.7",
         
     | 
| 
      
 1865 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1866 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1867 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 1868 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1869 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1870 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1871 
     | 
    
         
            +
                            """The number of ICMP Redirect messages received.""",
         
     | 
| 
      
 1872 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 1873 
     | 
    
         
            +
                    "icmpInEchos" : {
         
     | 
| 
      
 1874 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 1875 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1876 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.5.8",
         
     | 
| 
      
 1877 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1878 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1879 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 1880 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1881 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1882 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1883 
     | 
    
         
            +
                            """The number of ICMP Echo (request) messages
         
     | 
| 
      
 1884 
     | 
    
         
            +
            received.""",
         
     | 
| 
      
 1885 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 1886 
     | 
    
         
            +
                    "icmpInEchoReps" : {
         
     | 
| 
      
 1887 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 1888 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1889 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.5.9",
         
     | 
| 
      
 1890 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1891 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1892 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 1893 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1894 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1895 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1896 
     | 
    
         
            +
                            """The number of ICMP Echo Reply messages received.""",
         
     | 
| 
      
 1897 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 1898 
     | 
    
         
            +
                    "icmpInTimestamps" : {
         
     | 
| 
      
 1899 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 1900 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1901 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.5.10",
         
     | 
| 
      
 1902 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1903 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1904 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 1905 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1906 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1907 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1908 
     | 
    
         
            +
                            """The number of ICMP Timestamp (request) messages
         
     | 
| 
      
 1909 
     | 
    
         
            +
            received.""",
         
     | 
| 
      
 1910 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 1911 
     | 
    
         
            +
                    "icmpInTimestampReps" : {
         
     | 
| 
      
 1912 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 1913 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1914 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.5.11",
         
     | 
| 
      
 1915 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1916 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1917 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 1918 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1919 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1920 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1921 
     | 
    
         
            +
                            """The number of ICMP Timestamp Reply messages
         
     | 
| 
      
 1922 
     | 
    
         
            +
            received.""",
         
     | 
| 
      
 1923 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 1924 
     | 
    
         
            +
                    "icmpInAddrMasks" : {
         
     | 
| 
      
 1925 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 1926 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1927 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.5.12",
         
     | 
| 
      
 1928 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1929 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1930 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 1931 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1932 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1933 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1934 
     | 
    
         
            +
                            """The number of ICMP Address Mask Request messages
         
     | 
| 
      
 1935 
     | 
    
         
            +
            received.""",
         
     | 
| 
      
 1936 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 1937 
     | 
    
         
            +
                    "icmpInAddrMaskReps" : {
         
     | 
| 
      
 1938 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 1939 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1940 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.5.13",
         
     | 
| 
      
 1941 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1942 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1943 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 1944 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1945 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1946 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1947 
     | 
    
         
            +
                            """The number of ICMP Address Mask Reply messages
         
     | 
| 
      
 1948 
     | 
    
         
            +
            received.""",
         
     | 
| 
      
 1949 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 1950 
     | 
    
         
            +
                    "icmpOutMsgs" : {
         
     | 
| 
      
 1951 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 1952 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1953 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.5.14",
         
     | 
| 
      
 1954 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1955 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1956 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 1957 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1958 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1959 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1960 
     | 
    
         
            +
                            """The total number of ICMP messages which this
         
     | 
| 
      
 1961 
     | 
    
         
            +
            entity attempted to send.  Note that this counter
         
     | 
| 
      
 1962 
     | 
    
         
            +
            includes all those counted by icmpOutErrors.""",
         
     | 
| 
      
 1963 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 1964 
     | 
    
         
            +
                    "icmpOutErrors" : {
         
     | 
| 
      
 1965 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 1966 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1967 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.5.15",
         
     | 
| 
      
 1968 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1969 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1970 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 1971 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1972 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1973 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1974 
     | 
    
         
            +
                            """The number of ICMP messages which this entity did
         
     | 
| 
      
 1975 
     | 
    
         
            +
            not send due to problems discovered within ICMP
         
     | 
| 
      
 1976 
     | 
    
         
            +
             
     | 
| 
      
 1977 
     | 
    
         
            +
            such as a lack of buffers.  This value should not
         
     | 
| 
      
 1978 
     | 
    
         
            +
            include errors discovered outside the ICMP layer
         
     | 
| 
      
 1979 
     | 
    
         
            +
            such as the inability of IP to route the resultant
         
     | 
| 
      
 1980 
     | 
    
         
            +
            datagram.  In some implementations there may be no
         
     | 
| 
      
 1981 
     | 
    
         
            +
            types of error which contribute to this counter's
         
     | 
| 
      
 1982 
     | 
    
         
            +
            value.""",
         
     | 
| 
      
 1983 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 1984 
     | 
    
         
            +
                    "icmpOutDestUnreachs" : {
         
     | 
| 
      
 1985 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 1986 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 1987 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.5.16",
         
     | 
| 
      
 1988 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 1989 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 1990 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 1991 
     | 
    
         
            +
                        },
         
     | 
| 
      
 1992 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 1993 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 1994 
     | 
    
         
            +
                            """The number of ICMP Destination Unreachable
         
     | 
| 
      
 1995 
     | 
    
         
            +
            messages sent.""",
         
     | 
| 
      
 1996 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 1997 
     | 
    
         
            +
                    "icmpOutTimeExcds" : {
         
     | 
| 
      
 1998 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 1999 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2000 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.5.17",
         
     | 
| 
      
 2001 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2002 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2003 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2004 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2005 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2006 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2007 
     | 
    
         
            +
                            """The number of ICMP Time Exceeded messages sent.""",
         
     | 
| 
      
 2008 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 2009 
     | 
    
         
            +
                    "icmpOutParmProbs" : {
         
     | 
| 
      
 2010 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 2011 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2012 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.5.18",
         
     | 
| 
      
 2013 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2014 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2015 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2016 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2017 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2018 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2019 
     | 
    
         
            +
                            """The number of ICMP Parameter Problem messages
         
     | 
| 
      
 2020 
     | 
    
         
            +
            sent.""",
         
     | 
| 
      
 2021 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 2022 
     | 
    
         
            +
                    "icmpOutSrcQuenchs" : {
         
     | 
| 
      
 2023 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 2024 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2025 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.5.19",
         
     | 
| 
      
 2026 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2027 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2028 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2029 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2030 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2031 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2032 
     | 
    
         
            +
                            """The number of ICMP Source Quench messages sent.""",
         
     | 
| 
      
 2033 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 2034 
     | 
    
         
            +
                    "icmpOutRedirects" : {
         
     | 
| 
      
 2035 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 2036 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2037 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.5.20",
         
     | 
| 
      
 2038 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2039 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2040 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2041 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2042 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2043 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2044 
     | 
    
         
            +
                            """The number of ICMP Redirect messages sent.  For a
         
     | 
| 
      
 2045 
     | 
    
         
            +
             
     | 
| 
      
 2046 
     | 
    
         
            +
            host, this object will always be zero, since hosts
         
     | 
| 
      
 2047 
     | 
    
         
            +
            do not send redirects.""",
         
     | 
| 
      
 2048 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 2049 
     | 
    
         
            +
                    "icmpOutEchos" : {
         
     | 
| 
      
 2050 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 2051 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2052 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.5.21",
         
     | 
| 
      
 2053 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2054 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2055 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2056 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2057 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2058 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2059 
     | 
    
         
            +
                            """The number of ICMP Echo (request) messages sent.""",
         
     | 
| 
      
 2060 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 2061 
     | 
    
         
            +
                    "icmpOutEchoReps" : {
         
     | 
| 
      
 2062 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 2063 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2064 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.5.22",
         
     | 
| 
      
 2065 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2066 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2067 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2068 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2069 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2070 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2071 
     | 
    
         
            +
                            """The number of ICMP Echo Reply messages sent.""",
         
     | 
| 
      
 2072 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 2073 
     | 
    
         
            +
                    "icmpOutTimestamps" : {
         
     | 
| 
      
 2074 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 2075 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2076 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.5.23",
         
     | 
| 
      
 2077 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2078 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2079 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2080 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2081 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2082 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2083 
     | 
    
         
            +
                            """The number of ICMP Timestamp (request) messages
         
     | 
| 
      
 2084 
     | 
    
         
            +
            sent.""",
         
     | 
| 
      
 2085 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 2086 
     | 
    
         
            +
                    "icmpOutTimestampReps" : {
         
     | 
| 
      
 2087 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 2088 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2089 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.5.24",
         
     | 
| 
      
 2090 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2091 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2092 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2093 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2094 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2095 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2096 
     | 
    
         
            +
                            """The number of ICMP Timestamp Reply messages
         
     | 
| 
      
 2097 
     | 
    
         
            +
            sent.""",
         
     | 
| 
      
 2098 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 2099 
     | 
    
         
            +
                    "icmpOutAddrMasks" : {
         
     | 
| 
      
 2100 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 2101 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2102 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.5.25",
         
     | 
| 
      
 2103 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2104 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2105 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2106 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2107 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2108 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2109 
     | 
    
         
            +
                            """The number of ICMP Address Mask Request messages
         
     | 
| 
      
 2110 
     | 
    
         
            +
            sent.""",
         
     | 
| 
      
 2111 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 2112 
     | 
    
         
            +
                    "icmpOutAddrMaskReps" : {
         
     | 
| 
      
 2113 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 2114 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2115 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.5.26",
         
     | 
| 
      
 2116 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2117 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2118 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2119 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2120 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2121 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2122 
     | 
    
         
            +
                            """The number of ICMP Address Mask Reply messages
         
     | 
| 
      
 2123 
     | 
    
         
            +
            sent.""",
         
     | 
| 
      
 2124 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 2125 
     | 
    
         
            +
                    "tcp" : {
         
     | 
| 
      
 2126 
     | 
    
         
            +
                        "nodetype" : "node",
         
     | 
| 
      
 2127 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2128 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.6",
         
     | 
| 
      
 2129 
     | 
    
         
            +
                    }, # node
         
     | 
| 
      
 2130 
     | 
    
         
            +
                    "tcpRtoAlgorithm" : {
         
     | 
| 
      
 2131 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 2132 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2133 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.6.1",
         
     | 
| 
      
 2134 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2135 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2136 
     | 
    
         
            +
                            "type" :                 {
         
     | 
| 
      
 2137 
     | 
    
         
            +
                                "basetype" : "Enumeration",
         
     | 
| 
      
 2138 
     | 
    
         
            +
                                "other" : {
         
     | 
| 
      
 2139 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 2140 
     | 
    
         
            +
                                    "number" : "1"
         
     | 
| 
      
 2141 
     | 
    
         
            +
                                },
         
     | 
| 
      
 2142 
     | 
    
         
            +
                                "constant" : {
         
     | 
| 
      
 2143 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 2144 
     | 
    
         
            +
                                    "number" : "2"
         
     | 
| 
      
 2145 
     | 
    
         
            +
                                },
         
     | 
| 
      
 2146 
     | 
    
         
            +
                                "rsre" : {
         
     | 
| 
      
 2147 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 2148 
     | 
    
         
            +
                                    "number" : "3"
         
     | 
| 
      
 2149 
     | 
    
         
            +
                                },
         
     | 
| 
      
 2150 
     | 
    
         
            +
                                "vanj" : {
         
     | 
| 
      
 2151 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 2152 
     | 
    
         
            +
                                    "number" : "4"
         
     | 
| 
      
 2153 
     | 
    
         
            +
                                },
         
     | 
| 
      
 2154 
     | 
    
         
            +
                            },
         
     | 
| 
      
 2155 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2156 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2157 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2158 
     | 
    
         
            +
                            """The algorithm used to determine the timeout value
         
     | 
| 
      
 2159 
     | 
    
         
            +
            used for retransmitting unacknowledged octets.""",
         
     | 
| 
      
 2160 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 2161 
     | 
    
         
            +
                    "tcpRtoMin" : {
         
     | 
| 
      
 2162 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 2163 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2164 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.6.2",
         
     | 
| 
      
 2165 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2166 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2167 
     | 
    
         
            +
                            "type" : { "module" :"", "name" : "Integer32"},
         
     | 
| 
      
 2168 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2169 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2170 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2171 
     | 
    
         
            +
                            """The minimum value permitted by a TCP
         
     | 
| 
      
 2172 
     | 
    
         
            +
            implementation for the retransmission timeout,
         
     | 
| 
      
 2173 
     | 
    
         
            +
            measured in milliseconds.  More refined semantics
         
     | 
| 
      
 2174 
     | 
    
         
            +
            for objects of this type depend upon the algorithm
         
     | 
| 
      
 2175 
     | 
    
         
            +
            used to determine the retransmission timeout.  In
         
     | 
| 
      
 2176 
     | 
    
         
            +
            particular, when the timeout algorithm is rsre(3),
         
     | 
| 
      
 2177 
     | 
    
         
            +
            an object of this type has the semantics of the
         
     | 
| 
      
 2178 
     | 
    
         
            +
            LBOUND quantity described in RFC 793.""",
         
     | 
| 
      
 2179 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 2180 
     | 
    
         
            +
                    "tcpRtoMax" : {
         
     | 
| 
      
 2181 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 2182 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2183 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.6.3",
         
     | 
| 
      
 2184 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2185 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2186 
     | 
    
         
            +
                            "type" : { "module" :"", "name" : "Integer32"},
         
     | 
| 
      
 2187 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2188 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2189 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2190 
     | 
    
         
            +
                            """The maximum value permitted by a TCP
         
     | 
| 
      
 2191 
     | 
    
         
            +
            implementation for the retransmission timeout,
         
     | 
| 
      
 2192 
     | 
    
         
            +
            measured in milliseconds.  More refined semantics
         
     | 
| 
      
 2193 
     | 
    
         
            +
            for objects of this type depend upon the algorithm
         
     | 
| 
      
 2194 
     | 
    
         
            +
            used to determine the retransmission timeout.  In
         
     | 
| 
      
 2195 
     | 
    
         
            +
            particular, when the timeout algorithm is rsre(3),
         
     | 
| 
      
 2196 
     | 
    
         
            +
            an object of this type has the semantics of the
         
     | 
| 
      
 2197 
     | 
    
         
            +
            UBOUND quantity described in RFC 793.""",
         
     | 
| 
      
 2198 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 2199 
     | 
    
         
            +
                    "tcpMaxConn" : {
         
     | 
| 
      
 2200 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 2201 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2202 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.6.4",
         
     | 
| 
      
 2203 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2204 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2205 
     | 
    
         
            +
                            "type" : { "module" :"", "name" : "Integer32"},
         
     | 
| 
      
 2206 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2207 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2208 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2209 
     | 
    
         
            +
                            """The limit on the total number of TCP connections
         
     | 
| 
      
 2210 
     | 
    
         
            +
            the entity can support.  In entities where the
         
     | 
| 
      
 2211 
     | 
    
         
            +
            maximum number of connections is dynamic, this
         
     | 
| 
      
 2212 
     | 
    
         
            +
            object should contain the value -1.""",
         
     | 
| 
      
 2213 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 2214 
     | 
    
         
            +
                    "tcpActiveOpens" : {
         
     | 
| 
      
 2215 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 2216 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2217 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.6.5",
         
     | 
| 
      
 2218 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2219 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2220 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2221 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2222 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2223 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2224 
     | 
    
         
            +
                            """The number of times TCP connections have made a
         
     | 
| 
      
 2225 
     | 
    
         
            +
            direct transition to the SYN-SENT state from the
         
     | 
| 
      
 2226 
     | 
    
         
            +
            CLOSED state.""",
         
     | 
| 
      
 2227 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 2228 
     | 
    
         
            +
                    "tcpPassiveOpens" : {
         
     | 
| 
      
 2229 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 2230 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2231 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.6.6",
         
     | 
| 
      
 2232 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2233 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2234 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2235 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2236 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2237 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2238 
     | 
    
         
            +
                            """The number of times TCP connections have made a
         
     | 
| 
      
 2239 
     | 
    
         
            +
            direct transition to the SYN-RCVD state from the
         
     | 
| 
      
 2240 
     | 
    
         
            +
            LISTEN state.""",
         
     | 
| 
      
 2241 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 2242 
     | 
    
         
            +
                    "tcpAttemptFails" : {
         
     | 
| 
      
 2243 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 2244 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2245 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.6.7",
         
     | 
| 
      
 2246 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2247 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2248 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2249 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2250 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2251 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2252 
     | 
    
         
            +
                            """The number of times TCP connections have made a
         
     | 
| 
      
 2253 
     | 
    
         
            +
            direct transition to the CLOSED state from either
         
     | 
| 
      
 2254 
     | 
    
         
            +
            the SYN-SENT state or the SYN-RCVD state, plus the
         
     | 
| 
      
 2255 
     | 
    
         
            +
            number of times TCP connections have made a direct
         
     | 
| 
      
 2256 
     | 
    
         
            +
            transition to the LISTEN state from the SYN-RCVD
         
     | 
| 
      
 2257 
     | 
    
         
            +
            state.""",
         
     | 
| 
      
 2258 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 2259 
     | 
    
         
            +
                    "tcpEstabResets" : {
         
     | 
| 
      
 2260 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 2261 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2262 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.6.8",
         
     | 
| 
      
 2263 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2264 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2265 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2266 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2267 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2268 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2269 
     | 
    
         
            +
                            """The number of times TCP connections have made a
         
     | 
| 
      
 2270 
     | 
    
         
            +
            direct transition to the CLOSED state from either
         
     | 
| 
      
 2271 
     | 
    
         
            +
            the ESTABLISHED state or the CLOSE-WAIT state.""",
         
     | 
| 
      
 2272 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 2273 
     | 
    
         
            +
                    "tcpCurrEstab" : {
         
     | 
| 
      
 2274 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 2275 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2276 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.6.9",
         
     | 
| 
      
 2277 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2278 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2279 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Gauge"},
         
     | 
| 
      
 2280 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2281 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2282 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2283 
     | 
    
         
            +
                            """The number of TCP connections for which the
         
     | 
| 
      
 2284 
     | 
    
         
            +
            current state is either ESTABLISHED or CLOSE-
         
     | 
| 
      
 2285 
     | 
    
         
            +
            WAIT.""",
         
     | 
| 
      
 2286 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 2287 
     | 
    
         
            +
                    "tcpInSegs" : {
         
     | 
| 
      
 2288 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 2289 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2290 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.6.10",
         
     | 
| 
      
 2291 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2292 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2293 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2294 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2295 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2296 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2297 
     | 
    
         
            +
                            """The total number of segments received, including
         
     | 
| 
      
 2298 
     | 
    
         
            +
            those received in error.  This count includes
         
     | 
| 
      
 2299 
     | 
    
         
            +
            segments received on currently established
         
     | 
| 
      
 2300 
     | 
    
         
            +
            connections.""",
         
     | 
| 
      
 2301 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 2302 
     | 
    
         
            +
                    "tcpOutSegs" : {
         
     | 
| 
      
 2303 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 2304 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2305 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.6.11",
         
     | 
| 
      
 2306 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2307 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2308 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2309 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2310 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2311 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2312 
     | 
    
         
            +
                            """The total number of segments sent, including
         
     | 
| 
      
 2313 
     | 
    
         
            +
            those on current connections but excluding those
         
     | 
| 
      
 2314 
     | 
    
         
            +
            containing only retransmitted octets.""",
         
     | 
| 
      
 2315 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 2316 
     | 
    
         
            +
                    "tcpRetransSegs" : {
         
     | 
| 
      
 2317 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 2318 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2319 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.6.12",
         
     | 
| 
      
 2320 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2321 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2322 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2323 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2324 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2325 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2326 
     | 
    
         
            +
                            """The total number of segments retransmitted - that
         
     | 
| 
      
 2327 
     | 
    
         
            +
            is, the number of TCP segments transmitted
         
     | 
| 
      
 2328 
     | 
    
         
            +
            containing one or more previously transmitted
         
     | 
| 
      
 2329 
     | 
    
         
            +
            octets.""",
         
     | 
| 
      
 2330 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 2331 
     | 
    
         
            +
                    "tcpConnTable" : {
         
     | 
| 
      
 2332 
     | 
    
         
            +
                        "nodetype" : "table",
         
     | 
| 
      
 2333 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2334 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.6.13",
         
     | 
| 
      
 2335 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2336 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2337 
     | 
    
         
            +
                            """A table containing TCP connection-specific
         
     | 
| 
      
 2338 
     | 
    
         
            +
            information.""",
         
     | 
| 
      
 2339 
     | 
    
         
            +
                    }, # table
         
     | 
| 
      
 2340 
     | 
    
         
            +
                    "tcpConnEntry" : {
         
     | 
| 
      
 2341 
     | 
    
         
            +
                        "nodetype" : "row",
         
     | 
| 
      
 2342 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2343 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.6.13.1",
         
     | 
| 
      
 2344 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2345 
     | 
    
         
            +
                        "linkage" : [
         
     | 
| 
      
 2346 
     | 
    
         
            +
                            "tcpConnLocalAddress",
         
     | 
| 
      
 2347 
     | 
    
         
            +
                            "tcpConnLocalPort",
         
     | 
| 
      
 2348 
     | 
    
         
            +
                            "tcpConnRemAddress",
         
     | 
| 
      
 2349 
     | 
    
         
            +
                            "tcpConnRemPort",
         
     | 
| 
      
 2350 
     | 
    
         
            +
                        ],
         
     | 
| 
      
 2351 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2352 
     | 
    
         
            +
                            """Information about a particular current TCP
         
     | 
| 
      
 2353 
     | 
    
         
            +
            connection.  An object of this type is transient,
         
     | 
| 
      
 2354 
     | 
    
         
            +
            in that it ceases to exist when (or soon after)
         
     | 
| 
      
 2355 
     | 
    
         
            +
            the connection makes the transition to the CLOSED
         
     | 
| 
      
 2356 
     | 
    
         
            +
            state.""",
         
     | 
| 
      
 2357 
     | 
    
         
            +
                    }, # row
         
     | 
| 
      
 2358 
     | 
    
         
            +
                    "tcpConnState" : {
         
     | 
| 
      
 2359 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 2360 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2361 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.6.13.1.1",
         
     | 
| 
      
 2362 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2363 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2364 
     | 
    
         
            +
                            "type" :                 {
         
     | 
| 
      
 2365 
     | 
    
         
            +
                                "basetype" : "Enumeration",
         
     | 
| 
      
 2366 
     | 
    
         
            +
                                "closed" : {
         
     | 
| 
      
 2367 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 2368 
     | 
    
         
            +
                                    "number" : "1"
         
     | 
| 
      
 2369 
     | 
    
         
            +
                                },
         
     | 
| 
      
 2370 
     | 
    
         
            +
                                "listen" : {
         
     | 
| 
      
 2371 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 2372 
     | 
    
         
            +
                                    "number" : "2"
         
     | 
| 
      
 2373 
     | 
    
         
            +
                                },
         
     | 
| 
      
 2374 
     | 
    
         
            +
                                "synSent" : {
         
     | 
| 
      
 2375 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 2376 
     | 
    
         
            +
                                    "number" : "3"
         
     | 
| 
      
 2377 
     | 
    
         
            +
                                },
         
     | 
| 
      
 2378 
     | 
    
         
            +
                                "synReceived" : {
         
     | 
| 
      
 2379 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 2380 
     | 
    
         
            +
                                    "number" : "4"
         
     | 
| 
      
 2381 
     | 
    
         
            +
                                },
         
     | 
| 
      
 2382 
     | 
    
         
            +
                                "established" : {
         
     | 
| 
      
 2383 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 2384 
     | 
    
         
            +
                                    "number" : "5"
         
     | 
| 
      
 2385 
     | 
    
         
            +
                                },
         
     | 
| 
      
 2386 
     | 
    
         
            +
                                "finWait1" : {
         
     | 
| 
      
 2387 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 2388 
     | 
    
         
            +
                                    "number" : "6"
         
     | 
| 
      
 2389 
     | 
    
         
            +
                                },
         
     | 
| 
      
 2390 
     | 
    
         
            +
                                "finWait2" : {
         
     | 
| 
      
 2391 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 2392 
     | 
    
         
            +
                                    "number" : "7"
         
     | 
| 
      
 2393 
     | 
    
         
            +
                                },
         
     | 
| 
      
 2394 
     | 
    
         
            +
                                "closeWait" : {
         
     | 
| 
      
 2395 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 2396 
     | 
    
         
            +
                                    "number" : "8"
         
     | 
| 
      
 2397 
     | 
    
         
            +
                                },
         
     | 
| 
      
 2398 
     | 
    
         
            +
                                "lastAck" : {
         
     | 
| 
      
 2399 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 2400 
     | 
    
         
            +
                                    "number" : "9"
         
     | 
| 
      
 2401 
     | 
    
         
            +
                                },
         
     | 
| 
      
 2402 
     | 
    
         
            +
                                "closing" : {
         
     | 
| 
      
 2403 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 2404 
     | 
    
         
            +
                                    "number" : "10"
         
     | 
| 
      
 2405 
     | 
    
         
            +
                                },
         
     | 
| 
      
 2406 
     | 
    
         
            +
                                "timeWait" : {
         
     | 
| 
      
 2407 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 2408 
     | 
    
         
            +
                                    "number" : "11"
         
     | 
| 
      
 2409 
     | 
    
         
            +
                                },
         
     | 
| 
      
 2410 
     | 
    
         
            +
                                "deleteTCB" : {
         
     | 
| 
      
 2411 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 2412 
     | 
    
         
            +
                                    "number" : "12"
         
     | 
| 
      
 2413 
     | 
    
         
            +
                                },
         
     | 
| 
      
 2414 
     | 
    
         
            +
                            },
         
     | 
| 
      
 2415 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2416 
     | 
    
         
            +
                        "access" : "readwrite",
         
     | 
| 
      
 2417 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2418 
     | 
    
         
            +
                            """The state of this TCP connection.
         
     | 
| 
      
 2419 
     | 
    
         
            +
             
     | 
| 
      
 2420 
     | 
    
         
            +
            The only value which may be set by a management
         
     | 
| 
      
 2421 
     | 
    
         
            +
            station is deleteTCB(12).  Accordingly, it is
         
     | 
| 
      
 2422 
     | 
    
         
            +
            appropriate for an agent to return a `badValue'
         
     | 
| 
      
 2423 
     | 
    
         
            +
            response if a management station attempts to set
         
     | 
| 
      
 2424 
     | 
    
         
            +
            this object to any other value.
         
     | 
| 
      
 2425 
     | 
    
         
            +
             
     | 
| 
      
 2426 
     | 
    
         
            +
            If a management station sets this object to the
         
     | 
| 
      
 2427 
     | 
    
         
            +
            value deleteTCB(12), then this has the effect of
         
     | 
| 
      
 2428 
     | 
    
         
            +
            deleting the TCB (as defined in RFC 793) of the
         
     | 
| 
      
 2429 
     | 
    
         
            +
            corresponding connection on the managed node,
         
     | 
| 
      
 2430 
     | 
    
         
            +
            resulting in immediate termination of the
         
     | 
| 
      
 2431 
     | 
    
         
            +
            connection.
         
     | 
| 
      
 2432 
     | 
    
         
            +
             
     | 
| 
      
 2433 
     | 
    
         
            +
            As an implementation-specific option, a RST
         
     | 
| 
      
 2434 
     | 
    
         
            +
             
     | 
| 
      
 2435 
     | 
    
         
            +
            segment may be sent from the managed node to the
         
     | 
| 
      
 2436 
     | 
    
         
            +
            other TCP endpoint (note however that RST segments
         
     | 
| 
      
 2437 
     | 
    
         
            +
            are not sent reliably).""",
         
     | 
| 
      
 2438 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 2439 
     | 
    
         
            +
                    "tcpConnLocalAddress" : {
         
     | 
| 
      
 2440 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 2441 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2442 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.6.13.1.2",
         
     | 
| 
      
 2443 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2444 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2445 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "IpAddress"},
         
     | 
| 
      
 2446 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2447 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2448 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2449 
     | 
    
         
            +
                            """The local IP address for this TCP connection.  In
         
     | 
| 
      
 2450 
     | 
    
         
            +
            the case of a connection in the listen state which
         
     | 
| 
      
 2451 
     | 
    
         
            +
            is willing to accept connections for any IP
         
     | 
| 
      
 2452 
     | 
    
         
            +
            interface associated with the node, the value
         
     | 
| 
      
 2453 
     | 
    
         
            +
            0.0.0.0 is used.""",
         
     | 
| 
      
 2454 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 2455 
     | 
    
         
            +
                    "tcpConnLocalPort" : {
         
     | 
| 
      
 2456 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 2457 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2458 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.6.13.1.3",
         
     | 
| 
      
 2459 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2460 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2461 
     | 
    
         
            +
                            "type" :                 {
         
     | 
| 
      
 2462 
     | 
    
         
            +
                                "basetype" : "Integer32",
         
     | 
| 
      
 2463 
     | 
    
         
            +
                                "ranges" : [
         
     | 
| 
      
 2464 
     | 
    
         
            +
                                {
         
     | 
| 
      
 2465 
     | 
    
         
            +
                                    "min" : "0",
         
     | 
| 
      
 2466 
     | 
    
         
            +
                                    "max" : "65535"
         
     | 
| 
      
 2467 
     | 
    
         
            +
                                },
         
     | 
| 
      
 2468 
     | 
    
         
            +
                                ],
         
     | 
| 
      
 2469 
     | 
    
         
            +
                                "range" : {
         
     | 
| 
      
 2470 
     | 
    
         
            +
                                    "min" : "0",
         
     | 
| 
      
 2471 
     | 
    
         
            +
                                    "max" : "65535"
         
     | 
| 
      
 2472 
     | 
    
         
            +
                                },
         
     | 
| 
      
 2473 
     | 
    
         
            +
                            },
         
     | 
| 
      
 2474 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2475 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2476 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2477 
     | 
    
         
            +
                            """The local port number for this TCP connection.""",
         
     | 
| 
      
 2478 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 2479 
     | 
    
         
            +
                    "tcpConnRemAddress" : {
         
     | 
| 
      
 2480 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 2481 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2482 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.6.13.1.4",
         
     | 
| 
      
 2483 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2484 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2485 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "IpAddress"},
         
     | 
| 
      
 2486 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2487 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2488 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2489 
     | 
    
         
            +
                            """The remote IP address for this TCP connection.""",
         
     | 
| 
      
 2490 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 2491 
     | 
    
         
            +
                    "tcpConnRemPort" : {
         
     | 
| 
      
 2492 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 2493 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2494 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.6.13.1.5",
         
     | 
| 
      
 2495 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2496 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2497 
     | 
    
         
            +
                            "type" :                 {
         
     | 
| 
      
 2498 
     | 
    
         
            +
                                "basetype" : "Integer32",
         
     | 
| 
      
 2499 
     | 
    
         
            +
                                "ranges" : [
         
     | 
| 
      
 2500 
     | 
    
         
            +
                                {
         
     | 
| 
      
 2501 
     | 
    
         
            +
                                    "min" : "0",
         
     | 
| 
      
 2502 
     | 
    
         
            +
                                    "max" : "65535"
         
     | 
| 
      
 2503 
     | 
    
         
            +
                                },
         
     | 
| 
      
 2504 
     | 
    
         
            +
                                ],
         
     | 
| 
      
 2505 
     | 
    
         
            +
                                "range" : {
         
     | 
| 
      
 2506 
     | 
    
         
            +
                                    "min" : "0",
         
     | 
| 
      
 2507 
     | 
    
         
            +
                                    "max" : "65535"
         
     | 
| 
      
 2508 
     | 
    
         
            +
                                },
         
     | 
| 
      
 2509 
     | 
    
         
            +
                            },
         
     | 
| 
      
 2510 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2511 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2512 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2513 
     | 
    
         
            +
                            """The remote port number for this TCP connection.""",
         
     | 
| 
      
 2514 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 2515 
     | 
    
         
            +
                    "tcpInErrs" : {
         
     | 
| 
      
 2516 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 2517 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2518 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.6.14",
         
     | 
| 
      
 2519 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2520 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2521 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2522 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2523 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2524 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2525 
     | 
    
         
            +
                            """The total number of segments received in error
         
     | 
| 
      
 2526 
     | 
    
         
            +
            (e.g., bad TCP checksums).""",
         
     | 
| 
      
 2527 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 2528 
     | 
    
         
            +
                    "tcpOutRsts" : {
         
     | 
| 
      
 2529 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 2530 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2531 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.6.15",
         
     | 
| 
      
 2532 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2533 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2534 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2535 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2536 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2537 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2538 
     | 
    
         
            +
                            """The number of TCP segments sent containing the
         
     | 
| 
      
 2539 
     | 
    
         
            +
            RST flag.""",
         
     | 
| 
      
 2540 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 2541 
     | 
    
         
            +
                    "udp" : {
         
     | 
| 
      
 2542 
     | 
    
         
            +
                        "nodetype" : "node",
         
     | 
| 
      
 2543 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2544 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.7",
         
     | 
| 
      
 2545 
     | 
    
         
            +
                    }, # node
         
     | 
| 
      
 2546 
     | 
    
         
            +
                    "udpInDatagrams" : {
         
     | 
| 
      
 2547 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 2548 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2549 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.7.1",
         
     | 
| 
      
 2550 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2551 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2552 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2553 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2554 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2555 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2556 
     | 
    
         
            +
                            """The total number of UDP datagrams delivered to
         
     | 
| 
      
 2557 
     | 
    
         
            +
            UDP users.""",
         
     | 
| 
      
 2558 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 2559 
     | 
    
         
            +
                    "udpNoPorts" : {
         
     | 
| 
      
 2560 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 2561 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2562 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.7.2",
         
     | 
| 
      
 2563 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2564 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2565 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2566 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2567 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2568 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2569 
     | 
    
         
            +
                            """The total number of received UDP datagrams for
         
     | 
| 
      
 2570 
     | 
    
         
            +
            which there was no application at the destination
         
     | 
| 
      
 2571 
     | 
    
         
            +
            port.""",
         
     | 
| 
      
 2572 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 2573 
     | 
    
         
            +
                    "udpInErrors" : {
         
     | 
| 
      
 2574 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 2575 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2576 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.7.3",
         
     | 
| 
      
 2577 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2578 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2579 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2580 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2581 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2582 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2583 
     | 
    
         
            +
                            """The number of received UDP datagrams that could
         
     | 
| 
      
 2584 
     | 
    
         
            +
            not be delivered for reasons other than the lack
         
     | 
| 
      
 2585 
     | 
    
         
            +
            of an application at the destination port.""",
         
     | 
| 
      
 2586 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 2587 
     | 
    
         
            +
                    "udpOutDatagrams" : {
         
     | 
| 
      
 2588 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 2589 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2590 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.7.4",
         
     | 
| 
      
 2591 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2592 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2593 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2594 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2595 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2596 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2597 
     | 
    
         
            +
                            """The total number of UDP datagrams sent from this
         
     | 
| 
      
 2598 
     | 
    
         
            +
            entity.""",
         
     | 
| 
      
 2599 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 2600 
     | 
    
         
            +
                    "udpTable" : {
         
     | 
| 
      
 2601 
     | 
    
         
            +
                        "nodetype" : "table",
         
     | 
| 
      
 2602 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2603 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.7.5",
         
     | 
| 
      
 2604 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2605 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2606 
     | 
    
         
            +
                            """A table containing UDP listener information.""",
         
     | 
| 
      
 2607 
     | 
    
         
            +
                    }, # table
         
     | 
| 
      
 2608 
     | 
    
         
            +
                    "udpEntry" : {
         
     | 
| 
      
 2609 
     | 
    
         
            +
                        "nodetype" : "row",
         
     | 
| 
      
 2610 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2611 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.7.5.1",
         
     | 
| 
      
 2612 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2613 
     | 
    
         
            +
                        "linkage" : [
         
     | 
| 
      
 2614 
     | 
    
         
            +
                            "udpLocalAddress",
         
     | 
| 
      
 2615 
     | 
    
         
            +
                            "udpLocalPort",
         
     | 
| 
      
 2616 
     | 
    
         
            +
                        ],
         
     | 
| 
      
 2617 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2618 
     | 
    
         
            +
                            """Information about a particular current UDP
         
     | 
| 
      
 2619 
     | 
    
         
            +
            listener.""",
         
     | 
| 
      
 2620 
     | 
    
         
            +
                    }, # row
         
     | 
| 
      
 2621 
     | 
    
         
            +
                    "udpLocalAddress" : {
         
     | 
| 
      
 2622 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 2623 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2624 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.7.5.1.1",
         
     | 
| 
      
 2625 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2626 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2627 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "IpAddress"},
         
     | 
| 
      
 2628 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2629 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2630 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2631 
     | 
    
         
            +
                            """The local IP address for this UDP listener.  In
         
     | 
| 
      
 2632 
     | 
    
         
            +
             
     | 
| 
      
 2633 
     | 
    
         
            +
            the case of a UDP listener which is willing to
         
     | 
| 
      
 2634 
     | 
    
         
            +
            accept datagrams for any IP interface associated
         
     | 
| 
      
 2635 
     | 
    
         
            +
            with the node, the value 0.0.0.0 is used.""",
         
     | 
| 
      
 2636 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 2637 
     | 
    
         
            +
                    "udpLocalPort" : {
         
     | 
| 
      
 2638 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 2639 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2640 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.7.5.1.2",
         
     | 
| 
      
 2641 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2642 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2643 
     | 
    
         
            +
                            "type" :                 {
         
     | 
| 
      
 2644 
     | 
    
         
            +
                                "basetype" : "Integer32",
         
     | 
| 
      
 2645 
     | 
    
         
            +
                                "ranges" : [
         
     | 
| 
      
 2646 
     | 
    
         
            +
                                {
         
     | 
| 
      
 2647 
     | 
    
         
            +
                                    "min" : "0",
         
     | 
| 
      
 2648 
     | 
    
         
            +
                                    "max" : "65535"
         
     | 
| 
      
 2649 
     | 
    
         
            +
                                },
         
     | 
| 
      
 2650 
     | 
    
         
            +
                                ],
         
     | 
| 
      
 2651 
     | 
    
         
            +
                                "range" : {
         
     | 
| 
      
 2652 
     | 
    
         
            +
                                    "min" : "0",
         
     | 
| 
      
 2653 
     | 
    
         
            +
                                    "max" : "65535"
         
     | 
| 
      
 2654 
     | 
    
         
            +
                                },
         
     | 
| 
      
 2655 
     | 
    
         
            +
                            },
         
     | 
| 
      
 2656 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2657 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2658 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2659 
     | 
    
         
            +
                            """The local port number for this UDP listener.""",
         
     | 
| 
      
 2660 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 2661 
     | 
    
         
            +
                    "egp" : {
         
     | 
| 
      
 2662 
     | 
    
         
            +
                        "nodetype" : "node",
         
     | 
| 
      
 2663 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2664 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.8",
         
     | 
| 
      
 2665 
     | 
    
         
            +
                    }, # node
         
     | 
| 
      
 2666 
     | 
    
         
            +
                    "egpInMsgs" : {
         
     | 
| 
      
 2667 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 2668 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2669 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.8.1",
         
     | 
| 
      
 2670 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2671 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2672 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2673 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2674 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2675 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2676 
     | 
    
         
            +
                            """The number of EGP messages received without
         
     | 
| 
      
 2677 
     | 
    
         
            +
            error.""",
         
     | 
| 
      
 2678 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 2679 
     | 
    
         
            +
                    "egpInErrors" : {
         
     | 
| 
      
 2680 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 2681 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2682 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.8.2",
         
     | 
| 
      
 2683 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2684 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2685 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2686 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2687 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2688 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2689 
     | 
    
         
            +
                            """The number of EGP messages received that proved
         
     | 
| 
      
 2690 
     | 
    
         
            +
            to be in error.""",
         
     | 
| 
      
 2691 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 2692 
     | 
    
         
            +
                    "egpOutMsgs" : {
         
     | 
| 
      
 2693 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 2694 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2695 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.8.3",
         
     | 
| 
      
 2696 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2697 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2698 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2699 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2700 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2701 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2702 
     | 
    
         
            +
                            """The total number of locally generated EGP
         
     | 
| 
      
 2703 
     | 
    
         
            +
            messages.""",
         
     | 
| 
      
 2704 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 2705 
     | 
    
         
            +
                    "egpOutErrors" : {
         
     | 
| 
      
 2706 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 2707 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2708 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.8.4",
         
     | 
| 
      
 2709 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2710 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2711 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2712 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2713 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2714 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2715 
     | 
    
         
            +
                            """The number of locally generated EGP messages not
         
     | 
| 
      
 2716 
     | 
    
         
            +
            sent due to resource limitations within an EGP
         
     | 
| 
      
 2717 
     | 
    
         
            +
            entity.""",
         
     | 
| 
      
 2718 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 2719 
     | 
    
         
            +
                    "egpNeighTable" : {
         
     | 
| 
      
 2720 
     | 
    
         
            +
                        "nodetype" : "table",
         
     | 
| 
      
 2721 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2722 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.8.5",
         
     | 
| 
      
 2723 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2724 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2725 
     | 
    
         
            +
                            """The EGP neighbor table.""",
         
     | 
| 
      
 2726 
     | 
    
         
            +
                    }, # table
         
     | 
| 
      
 2727 
     | 
    
         
            +
                    "egpNeighEntry" : {
         
     | 
| 
      
 2728 
     | 
    
         
            +
                        "nodetype" : "row",
         
     | 
| 
      
 2729 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2730 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.8.5.1",
         
     | 
| 
      
 2731 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2732 
     | 
    
         
            +
                        "linkage" : [
         
     | 
| 
      
 2733 
     | 
    
         
            +
                            "egpNeighAddr",
         
     | 
| 
      
 2734 
     | 
    
         
            +
                        ],
         
     | 
| 
      
 2735 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2736 
     | 
    
         
            +
                            """Information about this entity's relationship with
         
     | 
| 
      
 2737 
     | 
    
         
            +
            a particular EGP neighbor.""",
         
     | 
| 
      
 2738 
     | 
    
         
            +
                    }, # row
         
     | 
| 
      
 2739 
     | 
    
         
            +
                    "egpNeighState" : {
         
     | 
| 
      
 2740 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 2741 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2742 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.8.5.1.1",
         
     | 
| 
      
 2743 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2744 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2745 
     | 
    
         
            +
                            "type" :                 {
         
     | 
| 
      
 2746 
     | 
    
         
            +
                                "basetype" : "Enumeration",
         
     | 
| 
      
 2747 
     | 
    
         
            +
                                "idle" : {
         
     | 
| 
      
 2748 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 2749 
     | 
    
         
            +
                                    "number" : "1"
         
     | 
| 
      
 2750 
     | 
    
         
            +
                                },
         
     | 
| 
      
 2751 
     | 
    
         
            +
                                "acquisition" : {
         
     | 
| 
      
 2752 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 2753 
     | 
    
         
            +
                                    "number" : "2"
         
     | 
| 
      
 2754 
     | 
    
         
            +
                                },
         
     | 
| 
      
 2755 
     | 
    
         
            +
                                "down" : {
         
     | 
| 
      
 2756 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 2757 
     | 
    
         
            +
                                    "number" : "3"
         
     | 
| 
      
 2758 
     | 
    
         
            +
                                },
         
     | 
| 
      
 2759 
     | 
    
         
            +
                                "up" : {
         
     | 
| 
      
 2760 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 2761 
     | 
    
         
            +
                                    "number" : "4"
         
     | 
| 
      
 2762 
     | 
    
         
            +
                                },
         
     | 
| 
      
 2763 
     | 
    
         
            +
                                "cease" : {
         
     | 
| 
      
 2764 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 2765 
     | 
    
         
            +
                                    "number" : "5"
         
     | 
| 
      
 2766 
     | 
    
         
            +
                                },
         
     | 
| 
      
 2767 
     | 
    
         
            +
                            },
         
     | 
| 
      
 2768 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2769 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2770 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2771 
     | 
    
         
            +
                            """The EGP state of the local system with respect to
         
     | 
| 
      
 2772 
     | 
    
         
            +
            this entry's EGP neighbor.  Each EGP state is
         
     | 
| 
      
 2773 
     | 
    
         
            +
            represented by a value that is one greater than
         
     | 
| 
      
 2774 
     | 
    
         
            +
            the numerical value associated with said state in
         
     | 
| 
      
 2775 
     | 
    
         
            +
            RFC 904.""",
         
     | 
| 
      
 2776 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 2777 
     | 
    
         
            +
                    "egpNeighAddr" : {
         
     | 
| 
      
 2778 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 2779 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2780 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.8.5.1.2",
         
     | 
| 
      
 2781 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2782 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2783 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "IpAddress"},
         
     | 
| 
      
 2784 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2785 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2786 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2787 
     | 
    
         
            +
                            """The IP address of this entry's EGP neighbor.""",
         
     | 
| 
      
 2788 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 2789 
     | 
    
         
            +
                    "egpNeighAs" : {
         
     | 
| 
      
 2790 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 2791 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2792 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.8.5.1.3",
         
     | 
| 
      
 2793 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2794 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2795 
     | 
    
         
            +
                            "type" : { "module" :"", "name" : "Integer32"},
         
     | 
| 
      
 2796 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2797 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2798 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2799 
     | 
    
         
            +
                            """The autonomous system of this EGP peer.  Zero
         
     | 
| 
      
 2800 
     | 
    
         
            +
            should be specified if the autonomous system
         
     | 
| 
      
 2801 
     | 
    
         
            +
            number of the neighbor is not yet known.""",
         
     | 
| 
      
 2802 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 2803 
     | 
    
         
            +
                    "egpNeighInMsgs" : {
         
     | 
| 
      
 2804 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 2805 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2806 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.8.5.1.4",
         
     | 
| 
      
 2807 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2808 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2809 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2810 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2811 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2812 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2813 
     | 
    
         
            +
                            """The number of EGP messages received without error
         
     | 
| 
      
 2814 
     | 
    
         
            +
            from this EGP peer.""",
         
     | 
| 
      
 2815 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 2816 
     | 
    
         
            +
                    "egpNeighInErrs" : {
         
     | 
| 
      
 2817 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 2818 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2819 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.8.5.1.5",
         
     | 
| 
      
 2820 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2821 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2822 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2823 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2824 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2825 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2826 
     | 
    
         
            +
                            """The number of EGP messages received from this EGP
         
     | 
| 
      
 2827 
     | 
    
         
            +
            peer that proved to be in error (e.g., bad EGP
         
     | 
| 
      
 2828 
     | 
    
         
            +
            checksum).""",
         
     | 
| 
      
 2829 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 2830 
     | 
    
         
            +
                    "egpNeighOutMsgs" : {
         
     | 
| 
      
 2831 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 2832 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2833 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.8.5.1.6",
         
     | 
| 
      
 2834 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2835 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2836 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2837 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2838 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2839 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2840 
     | 
    
         
            +
                            """The number of locally generated EGP messages to
         
     | 
| 
      
 2841 
     | 
    
         
            +
            this EGP peer.""",
         
     | 
| 
      
 2842 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 2843 
     | 
    
         
            +
                    "egpNeighOutErrs" : {
         
     | 
| 
      
 2844 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 2845 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2846 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.8.5.1.7",
         
     | 
| 
      
 2847 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2848 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2849 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2850 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2851 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2852 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2853 
     | 
    
         
            +
                            """The number of locally generated EGP messages not
         
     | 
| 
      
 2854 
     | 
    
         
            +
            sent to this EGP peer due to resource limitations
         
     | 
| 
      
 2855 
     | 
    
         
            +
            within an EGP entity.""",
         
     | 
| 
      
 2856 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 2857 
     | 
    
         
            +
                    "egpNeighInErrMsgs" : {
         
     | 
| 
      
 2858 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 2859 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2860 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.8.5.1.8",
         
     | 
| 
      
 2861 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2862 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2863 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2864 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2865 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2866 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2867 
     | 
    
         
            +
                            """The number of EGP-defined error messages received
         
     | 
| 
      
 2868 
     | 
    
         
            +
            from this EGP peer.""",
         
     | 
| 
      
 2869 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 2870 
     | 
    
         
            +
                    "egpNeighOutErrMsgs" : {
         
     | 
| 
      
 2871 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 2872 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2873 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.8.5.1.9",
         
     | 
| 
      
 2874 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2875 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2876 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2877 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2878 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2879 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2880 
     | 
    
         
            +
                            """The number of EGP-defined error messages sent to
         
     | 
| 
      
 2881 
     | 
    
         
            +
            this EGP peer.""",
         
     | 
| 
      
 2882 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 2883 
     | 
    
         
            +
                    "egpNeighStateUps" : {
         
     | 
| 
      
 2884 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 2885 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2886 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.8.5.1.10",
         
     | 
| 
      
 2887 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2888 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2889 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2890 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2891 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2892 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2893 
     | 
    
         
            +
                            """The number of EGP state transitions to the UP
         
     | 
| 
      
 2894 
     | 
    
         
            +
            state with this EGP peer.""",
         
     | 
| 
      
 2895 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 2896 
     | 
    
         
            +
                    "egpNeighStateDowns" : {
         
     | 
| 
      
 2897 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 2898 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2899 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.8.5.1.11",
         
     | 
| 
      
 2900 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2901 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2902 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 2903 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2904 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2905 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2906 
     | 
    
         
            +
                            """The number of EGP state transitions from the UP
         
     | 
| 
      
 2907 
     | 
    
         
            +
            state to any other state with this EGP peer.""",
         
     | 
| 
      
 2908 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 2909 
     | 
    
         
            +
                    "egpNeighIntervalHello" : {
         
     | 
| 
      
 2910 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 2911 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2912 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.8.5.1.12",
         
     | 
| 
      
 2913 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2914 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2915 
     | 
    
         
            +
                            "type" : { "module" :"", "name" : "Integer32"},
         
     | 
| 
      
 2916 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2917 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2918 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2919 
     | 
    
         
            +
                            """The interval between EGP Hello command
         
     | 
| 
      
 2920 
     | 
    
         
            +
            retransmissions (in hundredths of a second).  This
         
     | 
| 
      
 2921 
     | 
    
         
            +
            represents the t1 timer as defined in RFC 904.""",
         
     | 
| 
      
 2922 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 2923 
     | 
    
         
            +
                    "egpNeighIntervalPoll" : {
         
     | 
| 
      
 2924 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 2925 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2926 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.8.5.1.13",
         
     | 
| 
      
 2927 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2928 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2929 
     | 
    
         
            +
                            "type" : { "module" :"", "name" : "Integer32"},
         
     | 
| 
      
 2930 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2931 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2932 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2933 
     | 
    
         
            +
                            """The interval between EGP poll command
         
     | 
| 
      
 2934 
     | 
    
         
            +
             
     | 
| 
      
 2935 
     | 
    
         
            +
            retransmissions (in hundredths of a second).  This
         
     | 
| 
      
 2936 
     | 
    
         
            +
            represents the t3 timer as defined in RFC 904.""",
         
     | 
| 
      
 2937 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 2938 
     | 
    
         
            +
                    "egpNeighMode" : {
         
     | 
| 
      
 2939 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 2940 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2941 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.8.5.1.14",
         
     | 
| 
      
 2942 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2943 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2944 
     | 
    
         
            +
                            "type" :                 {
         
     | 
| 
      
 2945 
     | 
    
         
            +
                                "basetype" : "Enumeration",
         
     | 
| 
      
 2946 
     | 
    
         
            +
                                "active" : {
         
     | 
| 
      
 2947 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 2948 
     | 
    
         
            +
                                    "number" : "1"
         
     | 
| 
      
 2949 
     | 
    
         
            +
                                },
         
     | 
| 
      
 2950 
     | 
    
         
            +
                                "passive" : {
         
     | 
| 
      
 2951 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 2952 
     | 
    
         
            +
                                    "number" : "2"
         
     | 
| 
      
 2953 
     | 
    
         
            +
                                },
         
     | 
| 
      
 2954 
     | 
    
         
            +
                            },
         
     | 
| 
      
 2955 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2956 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 2957 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2958 
     | 
    
         
            +
                            """The polling mode of this EGP entity, either
         
     | 
| 
      
 2959 
     | 
    
         
            +
            passive or active.""",
         
     | 
| 
      
 2960 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 2961 
     | 
    
         
            +
                    "egpNeighEventTrigger" : {
         
     | 
| 
      
 2962 
     | 
    
         
            +
                        "nodetype" : "column",
         
     | 
| 
      
 2963 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 2964 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.8.5.1.15",
         
     | 
| 
      
 2965 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 2966 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 2967 
     | 
    
         
            +
                            "type" :                 {
         
     | 
| 
      
 2968 
     | 
    
         
            +
                                "basetype" : "Enumeration",
         
     | 
| 
      
 2969 
     | 
    
         
            +
                                "start" : {
         
     | 
| 
      
 2970 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 2971 
     | 
    
         
            +
                                    "number" : "1"
         
     | 
| 
      
 2972 
     | 
    
         
            +
                                },
         
     | 
| 
      
 2973 
     | 
    
         
            +
                                "stop" : {
         
     | 
| 
      
 2974 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 2975 
     | 
    
         
            +
                                    "number" : "2"
         
     | 
| 
      
 2976 
     | 
    
         
            +
                                },
         
     | 
| 
      
 2977 
     | 
    
         
            +
                            },
         
     | 
| 
      
 2978 
     | 
    
         
            +
                        },
         
     | 
| 
      
 2979 
     | 
    
         
            +
                        "access" : "readwrite",
         
     | 
| 
      
 2980 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 2981 
     | 
    
         
            +
                            """A control variable used to trigger operator-
         
     | 
| 
      
 2982 
     | 
    
         
            +
            initiated Start and Stop events.  When read, this
         
     | 
| 
      
 2983 
     | 
    
         
            +
            variable always returns the most recent value that
         
     | 
| 
      
 2984 
     | 
    
         
            +
            egpNeighEventTrigger was set to.  If it has not
         
     | 
| 
      
 2985 
     | 
    
         
            +
            been set since the last initialization of the
         
     | 
| 
      
 2986 
     | 
    
         
            +
            network management subsystem on the node, it
         
     | 
| 
      
 2987 
     | 
    
         
            +
            returns a value of `stop'.
         
     | 
| 
      
 2988 
     | 
    
         
            +
             
     | 
| 
      
 2989 
     | 
    
         
            +
            When set, this variable causes a Start or Stop
         
     | 
| 
      
 2990 
     | 
    
         
            +
            event on the specified neighbor, as specified on
         
     | 
| 
      
 2991 
     | 
    
         
            +
            pages 8-10 of RFC 904.  Briefly, a Start event
         
     | 
| 
      
 2992 
     | 
    
         
            +
            causes an Idle peer to begin neighbor acquisition
         
     | 
| 
      
 2993 
     | 
    
         
            +
            and a non-Idle peer to reinitiate neighbor
         
     | 
| 
      
 2994 
     | 
    
         
            +
            acquisition.  A stop event causes a non-Idle peer
         
     | 
| 
      
 2995 
     | 
    
         
            +
            to return to the Idle state until a Start event
         
     | 
| 
      
 2996 
     | 
    
         
            +
            occurs, either via egpNeighEventTrigger or
         
     | 
| 
      
 2997 
     | 
    
         
            +
            otherwise.""",
         
     | 
| 
      
 2998 
     | 
    
         
            +
                    }, # column
         
     | 
| 
      
 2999 
     | 
    
         
            +
                    "egpAs" : {
         
     | 
| 
      
 3000 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 3001 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 3002 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.8.6",
         
     | 
| 
      
 3003 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 3004 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 3005 
     | 
    
         
            +
                            "type" : { "module" :"", "name" : "Integer32"},
         
     | 
| 
      
 3006 
     | 
    
         
            +
                        },
         
     | 
| 
      
 3007 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 3008 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 3009 
     | 
    
         
            +
                            """The autonomous system number of this EGP entity.""",
         
     | 
| 
      
 3010 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 3011 
     | 
    
         
            +
                    "transmission" : {
         
     | 
| 
      
 3012 
     | 
    
         
            +
                        "nodetype" : "node",
         
     | 
| 
      
 3013 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 3014 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.10",
         
     | 
| 
      
 3015 
     | 
    
         
            +
                    }, # node
         
     | 
| 
      
 3016 
     | 
    
         
            +
                    "snmp" : {
         
     | 
| 
      
 3017 
     | 
    
         
            +
                        "nodetype" : "node",
         
     | 
| 
      
 3018 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 3019 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.11",
         
     | 
| 
      
 3020 
     | 
    
         
            +
                    }, # node
         
     | 
| 
      
 3021 
     | 
    
         
            +
                    "snmpInPkts" : {
         
     | 
| 
      
 3022 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 3023 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 3024 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.11.1",
         
     | 
| 
      
 3025 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 3026 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 3027 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 3028 
     | 
    
         
            +
                        },
         
     | 
| 
      
 3029 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 3030 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 3031 
     | 
    
         
            +
                            """The total number of Messages delivered to the
         
     | 
| 
      
 3032 
     | 
    
         
            +
            SNMP entity from the transport service.""",
         
     | 
| 
      
 3033 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 3034 
     | 
    
         
            +
                    "snmpOutPkts" : {
         
     | 
| 
      
 3035 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 3036 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 3037 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.11.2",
         
     | 
| 
      
 3038 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 3039 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 3040 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 3041 
     | 
    
         
            +
                        },
         
     | 
| 
      
 3042 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 3043 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 3044 
     | 
    
         
            +
                            """The total number of SNMP Messages which were
         
     | 
| 
      
 3045 
     | 
    
         
            +
            passed from the SNMP protocol entity to the
         
     | 
| 
      
 3046 
     | 
    
         
            +
            transport service.""",
         
     | 
| 
      
 3047 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 3048 
     | 
    
         
            +
                    "snmpInBadVersions" : {
         
     | 
| 
      
 3049 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 3050 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 3051 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.11.3",
         
     | 
| 
      
 3052 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 3053 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 3054 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 3055 
     | 
    
         
            +
                        },
         
     | 
| 
      
 3056 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 3057 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 3058 
     | 
    
         
            +
                            """The total number of SNMP Messages which were
         
     | 
| 
      
 3059 
     | 
    
         
            +
            delivered to the SNMP protocol entity and were for
         
     | 
| 
      
 3060 
     | 
    
         
            +
            an unsupported SNMP version.""",
         
     | 
| 
      
 3061 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 3062 
     | 
    
         
            +
                    "snmpInBadCommunityNames" : {
         
     | 
| 
      
 3063 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 3064 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 3065 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.11.4",
         
     | 
| 
      
 3066 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 3067 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 3068 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 3069 
     | 
    
         
            +
                        },
         
     | 
| 
      
 3070 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 3071 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 3072 
     | 
    
         
            +
                            """The total number of SNMP Messages delivered to
         
     | 
| 
      
 3073 
     | 
    
         
            +
            the SNMP protocol entity which used a SNMP
         
     | 
| 
      
 3074 
     | 
    
         
            +
            community name not known to said entity.""",
         
     | 
| 
      
 3075 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 3076 
     | 
    
         
            +
                    "snmpInBadCommunityUses" : {
         
     | 
| 
      
 3077 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 3078 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 3079 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.11.5",
         
     | 
| 
      
 3080 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 3081 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 3082 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 3083 
     | 
    
         
            +
                        },
         
     | 
| 
      
 3084 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 3085 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 3086 
     | 
    
         
            +
                            """The total number of SNMP Messages delivered to
         
     | 
| 
      
 3087 
     | 
    
         
            +
            the SNMP protocol entity which represented an SNMP
         
     | 
| 
      
 3088 
     | 
    
         
            +
            operation which was not allowed by the SNMP
         
     | 
| 
      
 3089 
     | 
    
         
            +
            community named in the Message.""",
         
     | 
| 
      
 3090 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 3091 
     | 
    
         
            +
                    "snmpInASNParseErrs" : {
         
     | 
| 
      
 3092 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 3093 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 3094 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.11.6",
         
     | 
| 
      
 3095 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 3096 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 3097 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 3098 
     | 
    
         
            +
                        },
         
     | 
| 
      
 3099 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 3100 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 3101 
     | 
    
         
            +
                            """The total number of ASN.1 or BER errors
         
     | 
| 
      
 3102 
     | 
    
         
            +
            encountered by the SNMP protocol entity when
         
     | 
| 
      
 3103 
     | 
    
         
            +
            decoding received SNMP Messages.""",
         
     | 
| 
      
 3104 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 3105 
     | 
    
         
            +
                    "snmpInTooBigs" : {
         
     | 
| 
      
 3106 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 3107 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 3108 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.11.8",
         
     | 
| 
      
 3109 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 3110 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 3111 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 3112 
     | 
    
         
            +
                        },
         
     | 
| 
      
 3113 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 3114 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 3115 
     | 
    
         
            +
                            """The total number of SNMP PDUs which were
         
     | 
| 
      
 3116 
     | 
    
         
            +
            delivered to the SNMP protocol entity and for
         
     | 
| 
      
 3117 
     | 
    
         
            +
            which the value of the error-status field is
         
     | 
| 
      
 3118 
     | 
    
         
            +
            `tooBig'.""",
         
     | 
| 
      
 3119 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 3120 
     | 
    
         
            +
                    "snmpInNoSuchNames" : {
         
     | 
| 
      
 3121 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 3122 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 3123 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.11.9",
         
     | 
| 
      
 3124 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 3125 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 3126 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 3127 
     | 
    
         
            +
                        },
         
     | 
| 
      
 3128 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 3129 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 3130 
     | 
    
         
            +
                            """The total number of SNMP PDUs which were
         
     | 
| 
      
 3131 
     | 
    
         
            +
            delivered to the SNMP protocol entity and for
         
     | 
| 
      
 3132 
     | 
    
         
            +
            which the value of the error-status field is
         
     | 
| 
      
 3133 
     | 
    
         
            +
            `noSuchName'.""",
         
     | 
| 
      
 3134 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 3135 
     | 
    
         
            +
                    "snmpInBadValues" : {
         
     | 
| 
      
 3136 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 3137 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 3138 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.11.10",
         
     | 
| 
      
 3139 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 3140 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 3141 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 3142 
     | 
    
         
            +
                        },
         
     | 
| 
      
 3143 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 3144 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 3145 
     | 
    
         
            +
                            """The total number of SNMP PDUs which were
         
     | 
| 
      
 3146 
     | 
    
         
            +
            delivered to the SNMP protocol entity and for
         
     | 
| 
      
 3147 
     | 
    
         
            +
            which the value of the error-status field is
         
     | 
| 
      
 3148 
     | 
    
         
            +
            `badValue'.""",
         
     | 
| 
      
 3149 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 3150 
     | 
    
         
            +
                    "snmpInReadOnlys" : {
         
     | 
| 
      
 3151 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 3152 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 3153 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.11.11",
         
     | 
| 
      
 3154 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 3155 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 3156 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 3157 
     | 
    
         
            +
                        },
         
     | 
| 
      
 3158 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 3159 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 3160 
     | 
    
         
            +
                            """The total number valid SNMP PDUs which were
         
     | 
| 
      
 3161 
     | 
    
         
            +
            delivered to the SNMP protocol entity and for
         
     | 
| 
      
 3162 
     | 
    
         
            +
            which the value of the error-status field is
         
     | 
| 
      
 3163 
     | 
    
         
            +
            `readOnly'.  It should be noted that it is a
         
     | 
| 
      
 3164 
     | 
    
         
            +
            protocol error to generate an SNMP PDU which
         
     | 
| 
      
 3165 
     | 
    
         
            +
            contains the value `readOnly' in the error-status
         
     | 
| 
      
 3166 
     | 
    
         
            +
            field, as such this object is provided as a means
         
     | 
| 
      
 3167 
     | 
    
         
            +
            of detecting incorrect implementations of the
         
     | 
| 
      
 3168 
     | 
    
         
            +
             
     | 
| 
      
 3169 
     | 
    
         
            +
            SNMP.""",
         
     | 
| 
      
 3170 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 3171 
     | 
    
         
            +
                    "snmpInGenErrs" : {
         
     | 
| 
      
 3172 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 3173 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 3174 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.11.12",
         
     | 
| 
      
 3175 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 3176 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 3177 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 3178 
     | 
    
         
            +
                        },
         
     | 
| 
      
 3179 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 3180 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 3181 
     | 
    
         
            +
                            """The total number of SNMP PDUs which were
         
     | 
| 
      
 3182 
     | 
    
         
            +
            delivered to the SNMP protocol entity and for
         
     | 
| 
      
 3183 
     | 
    
         
            +
            which the value of the error-status field is
         
     | 
| 
      
 3184 
     | 
    
         
            +
            `genErr'.""",
         
     | 
| 
      
 3185 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 3186 
     | 
    
         
            +
                    "snmpInTotalReqVars" : {
         
     | 
| 
      
 3187 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 3188 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 3189 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.11.13",
         
     | 
| 
      
 3190 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 3191 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 3192 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 3193 
     | 
    
         
            +
                        },
         
     | 
| 
      
 3194 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 3195 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 3196 
     | 
    
         
            +
                            """The total number of MIB objects which have been
         
     | 
| 
      
 3197 
     | 
    
         
            +
            retrieved successfully by the SNMP protocol entity
         
     | 
| 
      
 3198 
     | 
    
         
            +
            as the result of receiving valid SNMP Get-Request
         
     | 
| 
      
 3199 
     | 
    
         
            +
            and Get-Next PDUs.""",
         
     | 
| 
      
 3200 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 3201 
     | 
    
         
            +
                    "snmpInTotalSetVars" : {
         
     | 
| 
      
 3202 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 3203 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 3204 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.11.14",
         
     | 
| 
      
 3205 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 3206 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 3207 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 3208 
     | 
    
         
            +
                        },
         
     | 
| 
      
 3209 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 3210 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 3211 
     | 
    
         
            +
                            """The total number of MIB objects which have been
         
     | 
| 
      
 3212 
     | 
    
         
            +
            altered successfully by the SNMP protocol entity
         
     | 
| 
      
 3213 
     | 
    
         
            +
            as the result of receiving valid SNMP Set-Request
         
     | 
| 
      
 3214 
     | 
    
         
            +
            PDUs.""",
         
     | 
| 
      
 3215 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 3216 
     | 
    
         
            +
                    "snmpInGetRequests" : {
         
     | 
| 
      
 3217 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 3218 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 3219 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.11.15",
         
     | 
| 
      
 3220 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 3221 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 3222 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 3223 
     | 
    
         
            +
                        },
         
     | 
| 
      
 3224 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 3225 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 3226 
     | 
    
         
            +
                            """The total number of SNMP Get-Request PDUs which
         
     | 
| 
      
 3227 
     | 
    
         
            +
            have been accepted and processed by the SNMP
         
     | 
| 
      
 3228 
     | 
    
         
            +
            protocol entity.""",
         
     | 
| 
      
 3229 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 3230 
     | 
    
         
            +
                    "snmpInGetNexts" : {
         
     | 
| 
      
 3231 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 3232 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 3233 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.11.16",
         
     | 
| 
      
 3234 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 3235 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 3236 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 3237 
     | 
    
         
            +
                        },
         
     | 
| 
      
 3238 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 3239 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 3240 
     | 
    
         
            +
                            """The total number of SNMP Get-Next PDUs which have
         
     | 
| 
      
 3241 
     | 
    
         
            +
            been accepted and processed by the SNMP protocol
         
     | 
| 
      
 3242 
     | 
    
         
            +
            entity.""",
         
     | 
| 
      
 3243 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 3244 
     | 
    
         
            +
                    "snmpInSetRequests" : {
         
     | 
| 
      
 3245 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 3246 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 3247 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.11.17",
         
     | 
| 
      
 3248 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 3249 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 3250 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 3251 
     | 
    
         
            +
                        },
         
     | 
| 
      
 3252 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 3253 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 3254 
     | 
    
         
            +
                            """The total number of SNMP Set-Request PDUs which
         
     | 
| 
      
 3255 
     | 
    
         
            +
            have been accepted and processed by the SNMP
         
     | 
| 
      
 3256 
     | 
    
         
            +
            protocol entity.""",
         
     | 
| 
      
 3257 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 3258 
     | 
    
         
            +
                    "snmpInGetResponses" : {
         
     | 
| 
      
 3259 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 3260 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 3261 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.11.18",
         
     | 
| 
      
 3262 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 3263 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 3264 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 3265 
     | 
    
         
            +
                        },
         
     | 
| 
      
 3266 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 3267 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 3268 
     | 
    
         
            +
                            """The total number of SNMP Get-Response PDUs which
         
     | 
| 
      
 3269 
     | 
    
         
            +
            have been accepted and processed by the SNMP
         
     | 
| 
      
 3270 
     | 
    
         
            +
            protocol entity.""",
         
     | 
| 
      
 3271 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 3272 
     | 
    
         
            +
                    "snmpInTraps" : {
         
     | 
| 
      
 3273 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 3274 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 3275 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.11.19",
         
     | 
| 
      
 3276 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 3277 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 3278 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 3279 
     | 
    
         
            +
                        },
         
     | 
| 
      
 3280 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 3281 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 3282 
     | 
    
         
            +
                            """The total number of SNMP Trap PDUs which have
         
     | 
| 
      
 3283 
     | 
    
         
            +
            been accepted and processed by the SNMP protocol
         
     | 
| 
      
 3284 
     | 
    
         
            +
            entity.""",
         
     | 
| 
      
 3285 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 3286 
     | 
    
         
            +
                    "snmpOutTooBigs" : {
         
     | 
| 
      
 3287 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 3288 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 3289 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.11.20",
         
     | 
| 
      
 3290 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 3291 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 3292 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 3293 
     | 
    
         
            +
                        },
         
     | 
| 
      
 3294 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 3295 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 3296 
     | 
    
         
            +
                            """The total number of SNMP PDUs which were
         
     | 
| 
      
 3297 
     | 
    
         
            +
            generated by the SNMP protocol entity and for
         
     | 
| 
      
 3298 
     | 
    
         
            +
            which the value of the error-status field is
         
     | 
| 
      
 3299 
     | 
    
         
            +
            `tooBig.'""",
         
     | 
| 
      
 3300 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 3301 
     | 
    
         
            +
                    "snmpOutNoSuchNames" : {
         
     | 
| 
      
 3302 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 3303 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 3304 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.11.21",
         
     | 
| 
      
 3305 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 3306 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 3307 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 3308 
     | 
    
         
            +
                        },
         
     | 
| 
      
 3309 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 3310 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 3311 
     | 
    
         
            +
                            """The total number of SNMP PDUs which were
         
     | 
| 
      
 3312 
     | 
    
         
            +
            generated by the SNMP protocol entity and for
         
     | 
| 
      
 3313 
     | 
    
         
            +
            which the value of the error-status is
         
     | 
| 
      
 3314 
     | 
    
         
            +
            `noSuchName'.""",
         
     | 
| 
      
 3315 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 3316 
     | 
    
         
            +
                    "snmpOutBadValues" : {
         
     | 
| 
      
 3317 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 3318 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 3319 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.11.22",
         
     | 
| 
      
 3320 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 3321 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 3322 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 3323 
     | 
    
         
            +
                        },
         
     | 
| 
      
 3324 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 3325 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 3326 
     | 
    
         
            +
                            """The total number of SNMP PDUs which were
         
     | 
| 
      
 3327 
     | 
    
         
            +
            generated by the SNMP protocol entity and for
         
     | 
| 
      
 3328 
     | 
    
         
            +
            which the value of the error-status field is
         
     | 
| 
      
 3329 
     | 
    
         
            +
            `badValue'.""",
         
     | 
| 
      
 3330 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 3331 
     | 
    
         
            +
                    "snmpOutGenErrs" : {
         
     | 
| 
      
 3332 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 3333 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 3334 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.11.24",
         
     | 
| 
      
 3335 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 3336 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 3337 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 3338 
     | 
    
         
            +
                        },
         
     | 
| 
      
 3339 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 3340 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 3341 
     | 
    
         
            +
                            """The total number of SNMP PDUs which were
         
     | 
| 
      
 3342 
     | 
    
         
            +
            generated by the SNMP protocol entity and for
         
     | 
| 
      
 3343 
     | 
    
         
            +
            which the value of the error-status field is
         
     | 
| 
      
 3344 
     | 
    
         
            +
            `genErr'.""",
         
     | 
| 
      
 3345 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 3346 
     | 
    
         
            +
                    "snmpOutGetRequests" : {
         
     | 
| 
      
 3347 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 3348 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 3349 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.11.25",
         
     | 
| 
      
 3350 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 3351 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 3352 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 3353 
     | 
    
         
            +
                        },
         
     | 
| 
      
 3354 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 3355 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 3356 
     | 
    
         
            +
                            """The total number of SNMP Get-Request PDUs which
         
     | 
| 
      
 3357 
     | 
    
         
            +
            have been generated by the SNMP protocol entity.""",
         
     | 
| 
      
 3358 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 3359 
     | 
    
         
            +
                    "snmpOutGetNexts" : {
         
     | 
| 
      
 3360 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 3361 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 3362 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.11.26",
         
     | 
| 
      
 3363 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 3364 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 3365 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 3366 
     | 
    
         
            +
                        },
         
     | 
| 
      
 3367 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 3368 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 3369 
     | 
    
         
            +
                            """The total number of SNMP Get-Next PDUs which have
         
     | 
| 
      
 3370 
     | 
    
         
            +
            been generated by the SNMP protocol entity.""",
         
     | 
| 
      
 3371 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 3372 
     | 
    
         
            +
                    "snmpOutSetRequests" : {
         
     | 
| 
      
 3373 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 3374 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 3375 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.11.27",
         
     | 
| 
      
 3376 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 3377 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 3378 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 3379 
     | 
    
         
            +
                        },
         
     | 
| 
      
 3380 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 3381 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 3382 
     | 
    
         
            +
                            """The total number of SNMP Set-Request PDUs which
         
     | 
| 
      
 3383 
     | 
    
         
            +
            have been generated by the SNMP protocol entity.""",
         
     | 
| 
      
 3384 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 3385 
     | 
    
         
            +
                    "snmpOutGetResponses" : {
         
     | 
| 
      
 3386 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 3387 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 3388 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.11.28",
         
     | 
| 
      
 3389 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 3390 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 3391 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 3392 
     | 
    
         
            +
                        },
         
     | 
| 
      
 3393 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 3394 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 3395 
     | 
    
         
            +
                            """The total number of SNMP Get-Response PDUs which
         
     | 
| 
      
 3396 
     | 
    
         
            +
            have been generated by the SNMP protocol entity.""",
         
     | 
| 
      
 3397 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 3398 
     | 
    
         
            +
                    "snmpOutTraps" : {
         
     | 
| 
      
 3399 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 3400 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 3401 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.11.29",
         
     | 
| 
      
 3402 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 3403 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 3404 
     | 
    
         
            +
                            "type" : { "module" :"RFC1155-SMI", "name" : "Counter"},
         
     | 
| 
      
 3405 
     | 
    
         
            +
                        },
         
     | 
| 
      
 3406 
     | 
    
         
            +
                        "access" : "readonly",
         
     | 
| 
      
 3407 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 3408 
     | 
    
         
            +
                            """The total number of SNMP Trap PDUs which have
         
     | 
| 
      
 3409 
     | 
    
         
            +
            been generated by the SNMP protocol entity.""",
         
     | 
| 
      
 3410 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 3411 
     | 
    
         
            +
                    "snmpEnableAuthenTraps" : {
         
     | 
| 
      
 3412 
     | 
    
         
            +
                        "nodetype" : "scalar",
         
     | 
| 
      
 3413 
     | 
    
         
            +
                        "moduleName" : "RFC1213-MIB",
         
     | 
| 
      
 3414 
     | 
    
         
            +
                        "oid" : "1.3.6.1.2.1.11.30",
         
     | 
| 
      
 3415 
     | 
    
         
            +
                        "status" : "current",
         
     | 
| 
      
 3416 
     | 
    
         
            +
                        "syntax" : {
         
     | 
| 
      
 3417 
     | 
    
         
            +
                            "type" :                 {
         
     | 
| 
      
 3418 
     | 
    
         
            +
                                "basetype" : "Enumeration",
         
     | 
| 
      
 3419 
     | 
    
         
            +
                                "enabled" : {
         
     | 
| 
      
 3420 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 3421 
     | 
    
         
            +
                                    "number" : "1"
         
     | 
| 
      
 3422 
     | 
    
         
            +
                                },
         
     | 
| 
      
 3423 
     | 
    
         
            +
                                "disabled" : {
         
     | 
| 
      
 3424 
     | 
    
         
            +
                                    "nodetype" : "namednumber",
         
     | 
| 
      
 3425 
     | 
    
         
            +
                                    "number" : "2"
         
     | 
| 
      
 3426 
     | 
    
         
            +
                                },
         
     | 
| 
      
 3427 
     | 
    
         
            +
                            },
         
     | 
| 
      
 3428 
     | 
    
         
            +
                        },
         
     | 
| 
      
 3429 
     | 
    
         
            +
                        "access" : "readwrite",
         
     | 
| 
      
 3430 
     | 
    
         
            +
                        "description" :
         
     | 
| 
      
 3431 
     | 
    
         
            +
                            """Indicates whether the SNMP agent process is
         
     | 
| 
      
 3432 
     | 
    
         
            +
            permitted to generate authentication-failure
         
     | 
| 
      
 3433 
     | 
    
         
            +
            traps.  The value of this object overrides any
         
     | 
| 
      
 3434 
     | 
    
         
            +
            configuration information; as such, it provides a
         
     | 
| 
      
 3435 
     | 
    
         
            +
            means whereby all authentication-failure traps may
         
     | 
| 
      
 3436 
     | 
    
         
            +
            be disabled.
         
     | 
| 
      
 3437 
     | 
    
         
            +
             
     | 
| 
      
 3438 
     | 
    
         
            +
            Note that it is strongly recommended that this
         
     | 
| 
      
 3439 
     | 
    
         
            +
            object be stored in non-volatile memory so that it
         
     | 
| 
      
 3440 
     | 
    
         
            +
            remains constant between re-initializations of the
         
     | 
| 
      
 3441 
     | 
    
         
            +
            network management system.""",
         
     | 
| 
      
 3442 
     | 
    
         
            +
                    }, # scalar
         
     | 
| 
      
 3443 
     | 
    
         
            +
                }, # nodes
         
     | 
| 
      
 3444 
     | 
    
         
            +
             
     | 
| 
      
 3445 
     | 
    
         
            +
            }
         
     |