prometheus / snmp_exporter

SNMP Exporter for Prometheus
Apache License 2.0
1.65k stars 614 forks source link

How to specify v3 credentials in generator? #935

Closed llamafilm closed 1 year ago

llamafilm commented 1 year ago

Could someone please provide an example of generator.yml for v3 with authentication? I'm trying to follow the readme but I get this error.

$ snmp_exporter --log.level=debug --config.file=./snmp.yml
ts=2023-08-01T23:53:11.760Z caller=main.go:157 level=info msg="Starting snmp_exporter" version="(version=0.22.0, branch=HEAD, revision=7b0657fd99862a47f2f9f780f08a794ca7040ae7)"
ts=2023-08-01T23:53:11.760Z caller=main.go:158 level=info build_context="(go=go1.20.5, platform=linux/amd64, user=root@cfac3556bd96, date=20230615-13:29:47, tags=netgo)"
ts=2023-08-01T23:53:11.848Z caller=main.go:166 level=error msg="Error parsing config file" err="yaml: unmarshal errors:\n  line 3: field adder not found in type config.plain\n  line 12: field public_v1 not found in type config.plain\n  line 18: field public_v2 not found in type config.plain\n  line 25: field adder not found in type config.plain\n  line 260: field apcups not found in type config.plain\n  line 2618: field arista_sw not found in type config.plain\n  line 3193: field cisco_wlc not found in type config.plain\n  line 3639: field cyberpower not found in type config.plain\n  line 6251: field ddwrt not found in type config.plain\n  line 6686: field if_mib not found in type config.plain\n  line 7943: field infrapower_pdu not found in type config.plain\n  line 8021: field keepalived not found in type config.plain\n  line 9877: field kemp_loadmaster not found in type config.plain\n  line 10640: field liebert_pdu not found in type config.plain\n  line 13146: field mikrotik not found in type config.plain\n  line 16424: field nec_ix not found in type config.plain\n  line 18703: field paloalto_fw not found in type config.plain\n  line 19792: field printer_mib not found in type config.plain\n  line 19995: field raritan not found in type config.plain\n  line 20122: field servertech_sentry3 not found in type config.plain\n  line 20651: field servertech_sentry4 not found in type config.plain\n  line 22984: field synology not found in type config.plain\n  line 24759: field ubiquiti_airfiber not found in type config.plain\n  line 25944: field ubiquiti_airmax not found in type config.plain\n  line 26588: field ubiquiti_unifi not found in type config.plain\n  line 27217: field wiener_mpod not found in type config.plain"

This is the section I added to generator.yml

auths:
  adder:
    version: 3
    username: aim
    security_level: authPriv
    password: password
    auth_protocol: SHA
    priv_protocol: AES
    priv_password: password
modules:
  adder:
    walk:
      - 1.3.6.1.4.1.25119
      - sysUpTime

And this is what the generated snmp.yml looks like:

auths:
  adder:
    community: public
    security_level: authPriv
    username: aim
    password: password
    auth_protocol: SHA
    priv_protocol: AES
    priv_password: password
    version: 3
modules:
  adder:
    walk:
    - 1.3.6.1.4.1.25119
    get:
    - 1.3.6.1.2.1.1.3.0
    metrics:
    - name: sysUpTime
      oid: 1.3.6.1.2.1.1.3
      type: gauge
      help: The time (in hundredths of a second) since the network management portion
        of the system was last re-initialized. - 1.3.6.1.2.1.1.3
    - name: deviceIndex
      oid: 1.3.6.1.4.1.25119.1.1.1.1
      type: gauge
      help: d_id from the 'device' tuple - 1.3.6.1.4.1.25119.1.1.1.1
      indexes:
      - labelname: deviceIndex
        type: gauge
 ...<truncated>...

Host operating system: output of uname -a

Linux host 5.19.0-1029-aws #30~22.04.1-Ubuntu SMP Thu Jul 13 17:17:32 UTC 2023 x86_64 x86_64 x86_64 GNU/Linux

snmp_exporter version: output of snmp_exporter -version

snmp_exporter, version 0.22.0 (branch: HEAD, revision: 7b0657fd99862a47f2f9f780f08a794ca7040ae7) build user: root@cfac3556bd96 build date: 20230615-13:29:47 go version: go1.20.5 platform: linux/amd64 tags: netgo

What device/snmpwalk OID are you using?

Adder AIM 1.3.6.1.4.1.25119

If this is a new device, please link to the MIB(s).

AIM-MIB.txt

dswarbrick commented 1 year ago

You are trying to use the new (breaking change) config syntax for v0.23.0+ (currently unreleased), whilst running snmp_exporter v0.22.0.

Either upgrade to v0.23.0-rc.1, or use the config syntax as described in https://github.com/prometheus/snmp_exporter/blob/v0.22.0/generator/README.md.

llamafilm commented 1 year ago

Thank you, that's very helpful. It might be a good idea to include the generator in the release tarball to make this process easier for new users like myself. I finally got it working, but I had to clone the repo, then switch to the correct tag, then install a newer golang. The Golang package included in Ubuntu repos didn't work because it's too old (v1.18).

SuperQ commented 1 year ago

Unfortunately, the generator depends on linking C libraries. Specifically libsnmp. This means we would have to target various distribution versions.

I've played around with trying to statically compile these in, but haven't had much success.

dswarbrick commented 1 year ago

@llamafilm The Ubuntu (and Debian) package prometheus-snmp-exporter includes a prometheus-snmp-generator binary. Even if you opt to use a newer snmp_exporter (up to and including v0.22.0), the config generated by a recent-ish prometheus-snmp-generator should be compatible.

llamafilm commented 1 year ago

Thanks @dswarbrick. I tried installing from the Ubuntu repo, but it fails to generate. Perhaps because it needs to run make generator mibs first?

$ prometheus-snmp-generator generate --log.level=debug
ts=2023-08-05T00:51:46.608Z caller=net_snmp.go:144 level=info msg="Loading MIBs" from=$HOME/.snmp/mibs:/usr/share/snmp/mibs:/usr/share/snmp/mibs/iana:/usr/share/snmp/mibs/ietf
ts=2023-08-05T00:51:46.613Z caller=main.go:120 level=warn msg="NetSNMP reported parse error(s)" errors=1095
ts=2023-08-05T00:51:46.613Z caller=main.go:52 level=info msg="Generating config for module" module=adder
ts=2023-08-05T00:51:46.613Z caller=main.go:130 level=error msg="Error generating config netsnmp" err="cannot find oid '1.3.6.1.4.1.25119' to walk"

I have copied the MIB file into /usr/share/snmp/mibs/ but the parse_errors command is showing lots of errors.

$ prometheus-snmp-generator parse_errors
ts=2023-08-05T00:55:42.499Z caller=net_snmp.go:144 level=info msg="Loading MIBs" from=$HOME/.snmp/mibs:/usr/share/snmp/mibs:/usr/share/snmp/mibs/iana:/usr/share/snmp/mibs/ietf
ts=2023-08-05T00:55:42.504Z caller=main.go:120 level=warn msg="NetSNMP reported parse error(s)" errors=1095
MIB search path: /home/nfsuper/.snmp/mibs:/usr/share/snmp/mibs:/usr/share/snmp/mibs/iana:/usr/share/snmp/mibs/ietf
Unlinked OID in UCD-SNMP-MIB: ucdavis ::= { enterprises 2021 }
Undefined identifier: enterprises near line 42 of /usr/share/snmp/mibs/UCD-SNMP-MIB.txt
Unlinked OID in UCD-IPFWACC-MIB: ucdIpFwAccMIB ::= { ucdExperimental 1 }
Undefined identifier: ucdExperimental near line 11 of /usr/share/snmp/mibs/UCD-IPFWACC-MIB.txt
Unlinked OID in UCD-DLMOD-MIB: ucdDlmodMIB ::= { ucdExperimental 14 }
Undefined identifier: ucdExperimental near line 13 of /usr/share/snmp/mibs/UCD-DLMOD-MIB.txt
Unlinked OID in UCD-DISKIO-MIB: ucdDiskIOMIB ::= { ucdExperimental 15 }
Undefined identifier: ucdExperimental near line 19 of /usr/share/snmp/mibs/UCD-DISKIO-MIB.txt
Unlinked OID in UCD-DEMO-MIB: ucdDemoMIB ::= { ucdavis 14 }
Undefined identifier: ucdavis near line 7 of /usr/share/snmp/mibs/UCD-DEMO-MIB.txt
Unlinked OID in NET-SNMP-MIB: netSnmp ::= { enterprises 8072 }
Undefined identifier: enterprises near line 10 of /usr/share/snmp/mibs/NET-SNMP-MIB.txt
Unlinked OID in NET-SNMP-VACM-MIB: netSnmpVacmMIB ::= { netSnmpObjects 9 }
Undefined identifier: netSnmpObjects near line 28 of /usr/share/snmp/mibs/NET-SNMP-VACM-MIB.txt
Unlinked OID in NET-SNMP-TC: unknown ::= { netSnmpAgentOIDs 255 }
Undefined identifier: netSnmpAgentOIDs near line 97 of /usr/share/snmp/mibs/NET-SNMP-TC.txt
Unlinked OID in NET-SNMP-TC: dragonfly ::= { netSnmpAgentOIDs 17 }
Undefined identifier: netSnmpAgentOIDs near line 96 of /usr/share/snmp/mibs/NET-SNMP-TC.txt
Unlinked OID in NET-SNMP-TC: macosx ::= { netSnmpAgentOIDs 16 }
Undefined identifier: netSnmpAgentOIDs near line 95 of /usr/share/snmp/mibs/NET-SNMP-TC.txt
Unlinked OID in NET-SNMP-TC: aix ::= { netSnmpAgentOIDs 15 }
Undefined identifier: netSnmpAgentOIDs near line 94 of /usr/share/snmp/mibs/NET-SNMP-TC.txt
Unlinked OID in NET-SNMP-TC: hpux11 ::= { netSnmpAgentOIDs 14 }
Undefined identifier: netSnmpAgentOIDs near line 93 of /usr/share/snmp/mibs/NET-SNMP-TC.txt
Unlinked OID in NET-SNMP-TC: win32 ::= { netSnmpAgentOIDs 13 }
Undefined identifier: netSnmpAgentOIDs near line 92 of /usr/share/snmp/mibs/NET-SNMP-TC.txt
Unlinked OID in NET-SNMP-TC: openbsd ::= { netSnmpAgentOIDs 12 }
Undefined identifier: netSnmpAgentOIDs near line 91 of /usr/share/snmp/mibs/NET-SNMP-TC.txt
Unlinked OID in NET-SNMP-TC: bsdi ::= { netSnmpAgentOIDs 11 }
Undefined identifier: netSnmpAgentOIDs near line 90 of /usr/share/snmp/mibs/NET-SNMP-TC.txt
Unlinked OID in NET-SNMP-TC: linux ::= { netSnmpAgentOIDs 10 }
Undefined identifier: netSnmpAgentOIDs near line 89 of /usr/share/snmp/mibs/NET-SNMP-TC.txt
Unlinked OID in NET-SNMP-TC: irix ::= { netSnmpAgentOIDs 9 }
Undefined identifier: netSnmpAgentOIDs near line 88 of /usr/share/snmp/mibs/NET-SNMP-TC.txt
Unlinked OID in NET-SNMP-TC: freebsd ::= { netSnmpAgentOIDs 8 }
Undefined identifier: netSnmpAgentOIDs near line 87 of /usr/share/snmp/mibs/NET-SNMP-TC.txt
Unlinked OID in NET-SNMP-TC: netbsd ::= { netSnmpAgentOIDs 7 }
Undefined identifier: netSnmpAgentOIDs near line 86 of /usr/share/snmp/mibs/NET-SNMP-TC.txt
Unlinked OID in NET-SNMP-TC: hpux10 ::= { netSnmpAgentOIDs 6 }
Undefined identifier: netSnmpAgentOIDs near line 85 of /usr/share/snmp/mibs/NET-SNMP-TC.txt
Unlinked OID in NET-SNMP-TC: ultrix ::= { netSnmpAgentOIDs 5 }
Undefined identifier: netSnmpAgentOIDs near line 84 of /usr/share/snmp/mibs/NET-SNMP-TC.txt
Unlinked OID in NET-SNMP-TC: osf ::= { netSnmpAgentOIDs 4 }
Undefined identifier: netSnmpAgentOIDs near line 83 of /usr/share/snmp/mibs/NET-SNMP-TC.txt
Unlinked OID in NET-SNMP-TC: solaris ::= { netSnmpAgentOIDs 3 }
Undefined identifier: netSnmpAgentOIDs near line 82 of /usr/share/snmp/mibs/NET-SNMP-TC.txt
Unlinked OID in NET-SNMP-TC: sunos4 ::= { netSnmpAgentOIDs 2 }
Undefined identifier: netSnmpAgentOIDs near line 81 of /usr/share/snmp/mibs/NET-SNMP-TC.txt
Unlinked OID in NET-SNMP-TC: hpux9 ::= { netSnmpAgentOIDs 1 }
Undefined identifier: netSnmpAgentOIDs near line 80 of /usr/share/snmp/mibs/NET-SNMP-TC.txt
Unlinked OID in NET-SNMP-TC: netSnmpTCs ::= { netSnmpModuleIDs 1 }
Undefined identifier: netSnmpModuleIDs near line 14 of /usr/share/snmp/mibs/NET-SNMP-TC.txt
Unlinked OID in NET-SNMP-TC: netSnmpTLSTCPDomain ::= { netSnmpDomains 10 }
Undefined identifier: netSnmpDomains near line 126 of /usr/share/snmp/mibs/NET-SNMP-TC.txt
Unlinked OID in NET-SNMP-TC: netSnmpDTLSSCTPDomain ::= { netSnmpDomains 9 }
Undefined identifier: netSnmpDomains near line 125 of /usr/share/snmp/mibs/NET-SNMP-TC.txt
Unlinked OID in NET-SNMP-TC: netSnmpDTLSUDPDomain ::= { netSnmpDomains 8 }
Undefined identifier: netSnmpDomains near line 124 of /usr/share/snmp/mibs/NET-SNMP-TC.txt
Unlinked OID in NET-SNMP-TC: netSnmpAliasDomain ::= { netSnmpDomains 7 }
Undefined identifier: netSnmpDomains near line 123 of /usr/share/snmp/mibs/NET-SNMP-TC.txt
Unlinked OID in NET-SNMP-TC: netSnmpCallbackDomain ::= { netSnmpDomains 6 }
Undefined identifier: netSnmpDomains near line 122 of /usr/share/snmp/mibs/NET-SNMP-TC.txt
Unlinked OID in NET-SNMP-TC: netSnmpTCPIPv6Domain ::= { netSnmpDomains 5 }
Undefined identifier: netSnmpDomains near line 121 of /usr/share/snmp/mibs/NET-SNMP-TC.txt
Unlinked OID in NET-SNMP-TC: netSnmpUDPIPv6Domain ::= { netSnmpDomains 4 }
Undefined identifier: netSnmpDomains near line 120 of /usr/share/snmp/mibs/NET-SNMP-TC.txt
Unlinked OID in NET-SNMP-TC: netSnmpAAL5PVCDomain ::= { netSnmpDomains 3 }
Undefined identifier: netSnmpDomains near line 119 of /usr/share/snmp/mibs/NET-SNMP-TC.txt
Unlinked OID in NET-SNMP-TC: netSnmpUnixDomain ::= { netSnmpDomains 2 }
Undefined identifier: netSnmpDomains near line 118 of /usr/share/snmp/mibs/NET-SNMP-TC.txt
Unlinked OID in NET-SNMP-TC: netSnmpTCPDomain ::= { netSnmpDomains 1 }
Undefined identifier: netSnmpDomains near line 117 of /usr/share/snmp/mibs/NET-SNMP-TC.txt
Unlinked OID in NET-SNMP-EXAMPLES-MIB: netSnmpExamples ::= { netSnmp 2 }
Undefined identifier: netSnmp near line 16 of /usr/share/snmp/mibs/NET-SNMP-EXAMPLES-MIB.txt
Unlinked OID in NET-SNMP-PASS-MIB: netSnmpPassExamples ::= { netSnmpExamples 255 }
Undefined identifier: netSnmpExamples near line 14 of /usr/share/snmp/mibs/NET-SNMP-PASS-MIB.txt
Unlinked OID in NET-SNMP-AGENT-MIB: nsAgentNotifyGroup ::= { netSnmpGroups 9 }
Undefined identifier: netSnmpGroups near line 545 of /usr/share/snmp/mibs/NET-SNMP-AGENT-MIB.txt
Unlinked OID in NET-SNMP-AGENT-MIB: nsTransactionGroup ::= { netSnmpGroups 8 }
Undefined identifier: netSnmpGroups near line 536 of /usr/share/snmp/mibs/NET-SNMP-AGENT-MIB.txt
Unlinked OID in NET-SNMP-AGENT-MIB: nsConfigGroups ::= { netSnmpGroups 7 }
Undefined identifier: netSnmpGroups near line 515 of /usr/share/snmp/mibs/NET-SNMP-AGENT-MIB.txt
Unlinked OID in NET-SNMP-AGENT-MIB: nsCacheGroup ::= { netSnmpGroups 4 }
Undefined identifier: netSnmpGroups near line 505 of /usr/share/snmp/mibs/NET-SNMP-AGENT-MIB.txt
Unlinked OID in NET-SNMP-AGENT-MIB: nsModuleGroup ::= { netSnmpGroups 2 }
Undefined identifier: netSnmpGroups near line 495 of /usr/share/snmp/mibs/NET-SNMP-AGENT-MIB.txt
Unlinked OID in NET-SNMP-AGENT-MIB: netSnmpAgentMIB ::= { netSnmpModuleIDs 2 }
Undefined identifier: netSnmpModuleIDs near line 24 of /usr/share/snmp/mibs/NET-SNMP-AGENT-MIB.txt
Unlinked OID in NET-SNMP-AGENT-MIB: nsTransactions ::= { netSnmpObjects 8 }
Undefined identifier: netSnmpObjects near line 55 of /usr/share/snmp/mibs/NET-SNMP-AGENT-MIB.txt
Unlinked OID in NET-SNMP-AGENT-MIB: nsConfiguration ::= { netSnmpObjects 7 }
Undefined identifier: netSnmpObjects near line 54 of /usr/share/snmp/mibs/NET-SNMP-AGENT-MIB.txt
Unlinked OID in NET-SNMP-AGENT-MIB: nsErrorHistory ::= { netSnmpObjects 6 }
Undefined identifier: netSnmpObjects near line 53 of /usr/share/snmp/mibs/NET-SNMP-AGENT-MIB.txt
Unlinked OID in NET-SNMP-AGENT-MIB: nsCache ::= { netSnmpObjects 5 }
Undefined identifier: netSnmpObjects near line 52 of /usr/share/snmp/mibs/NET-SNMP-AGENT-MIB.txt
Unlinked OID in NET-SNMP-AGENT-MIB: nsDLMod ::= { netSnmpObjects 4 }
Undefined identifier: netSnmpObjects near line 51 of /usr/share/snmp/mibs/NET-SNMP-AGENT-MIB.txt
Unlinked OID in NET-SNMP-AGENT-MIB: nsExtensions ::= { netSnmpObjects 3 }
Undefined identifier: netSnmpObjects near line 50 of /usr/share/snmp/mibs/NET-SNMP-AGENT-MIB.txt
Unlinked OID in NET-SNMP-AGENT-MIB: nsMibRegistry ::= { netSnmpObjects 2 }
Undefined identifier: netSnmpObjects near line 49 of /usr/share/snmp/mibs/NET-SNMP-AGENT-MIB.txt
Unlinked OID in NET-SNMP-AGENT-MIB: nsVersion ::= { netSnmpObjects 1 }
Undefined identifier: netSnmpObjects near line 48 of /usr/share/snmp/mibs/NET-SNMP-AGENT-MIB.txt
Unlinked OID in NET-SNMP-AGENT-MIB: nsNotifyRestart ::= { netSnmpNotifications 3 }
Undefined identifier: netSnmpNotifications near line 482 of /usr/share/snmp/mibs/NET-SNMP-AGENT-MIB.txt
Unlinked OID in NET-SNMP-AGENT-MIB: nsNotifyShutdown ::= { netSnmpNotifications 2 }
Undefined identifier: netSnmpNotifications near line 476 of /usr/share/snmp/mibs/NET-SNMP-AGENT-MIB.txt
Unlinked OID in NET-SNMP-AGENT-MIB: nsNotifyStart ::= { netSnmpNotifications 1 }
Undefined identifier: netSnmpNotifications near line 470 of /usr/share/snmp/mibs/NET-SNMP-AGENT-MIB.txt
Unlinked OID in NET-SNMP-EXTEND-MIB: nsExtendGroups ::= { nsExtensions 3 }
Undefined identifier: nsExtensions near line 39 of /usr/share/snmp/mibs/NET-SNMP-EXTEND-MIB.txt
Unlinked OID in NET-SNMP-EXTEND-MIB: nsExtendObjects ::= { nsExtensions 2 }
Undefined identifier: nsExtensions near line 38 of /usr/share/snmp/mibs/NET-SNMP-EXTEND-MIB.txt
Unlinked OID in NET-SNMP-EXTEND-MIB: netSnmpExtendMIB ::= { nsExtensions 1 }
Undefined identifier: nsExtensions near line 19 of /usr/share/snmp/mibs/NET-SNMP-EXTEND-MIB.txt
Unlinked OID in LM-SENSORS-MIB: lmSensors ::= { ucdExperimental 16 }
Undefined identifier: ucdExperimental near line 32 of /usr/share/snmp/mibs/LM-SENSORS-MIB.txt
Unlinked OID in ADDER-AIM-MIB: adderTechnology ::= { enterprises 25119 }
Undefined identifier: enterprises near line 26 of /usr/share/snmp/mibs/AIM-MIB.mib
Unlinked OID in ADDER-AIM-MIB: anonymous#0 ::= { enterprises 25119 }
Undefined identifier: enterprises near line 24 of /usr/share/snmp/mibs/AIM-MIB.mib
Cannot adopt OID in UCD-SNMP-MIB: logMatchRegExCompilation ::= { logMatchEntry 101 }
Cannot adopt OID in UCD-SNMP-MIB: logMatchErrorFlag ::= { logMatchEntry 100 }
Cannot adopt OID in UCD-SNMP-MIB: logMatchCycle ::= { logMatchEntry 11 }
Cannot adopt OID in UCD-SNMP-MIB: logMatchCount ::= { logMatchEntry 10 }
Cannot adopt OID in UCD-SNMP-MIB: logMatchCounter ::= { logMatchEntry 9 }
Cannot adopt OID in UCD-SNMP-MIB: logMatchCurrentCount ::= { logMatchEntry 8 }
Cannot adopt OID in UCD-SNMP-MIB: logMatchCurrentCounter ::= { logMatchEntry 7 }
Cannot adopt OID in UCD-SNMP-MIB: logMatchGlobalCount ::= { logMatchEntry 6 }
Cannot adopt OID in UCD-SNMP-MIB: logMatchGlobalCounter ::= { logMatchEntry 5 }
Cannot adopt OID in UCD-SNMP-MIB: logMatchRegEx ::= { logMatchEntry 4 }
Cannot adopt OID in UCD-SNMP-MIB: logMatchFilename ::= { logMatchEntry 3 }
Cannot adopt OID in UCD-SNMP-MIB: logMatchName ::= { logMatchEntry 2 }
Cannot adopt OID in UCD-SNMP-MIB: logMatchIndex ::= { logMatchEntry 1 }
Cannot adopt OID in NET-SNMP-VACM-MIB: nsVacmAccessEntry ::= { nsVacmAccessTable 1 }
Cannot adopt OID in UCD-SNMP-MIB: extErrFixCmd ::= { extEntry 103 }
Cannot adopt OID in UCD-SNMP-MIB: extErrFix ::= { extEntry 102 }
Cannot adopt OID in UCD-SNMP-MIB: extOutput ::= { extEntry 101 }
Cannot adopt OID in UCD-SNMP-MIB: extResult ::= { extEntry 100 }
Cannot adopt OID in UCD-SNMP-MIB: extCommand ::= { extEntry 3 }
Cannot adopt OID in UCD-SNMP-MIB: extNames ::= { extEntry 2 }
Cannot adopt OID in UCD-SNMP-MIB: extIndex ::= { extEntry 1 }
Cannot adopt OID in UCD-DEMO-MIB: ucdDemoPublic ::= { ucdDemoMIBObjects 1 }
Cannot adopt OID in UCD-DLMOD-MIB: dlmodTable ::= { ucdDlmodMIB 2 }
Cannot adopt OID in UCD-DLMOD-MIB: dlmodNextIndex ::= { ucdDlmodMIB 1 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpExamples ::= { netSnmp 2 }
Cannot adopt OID in NET-SNMP-MIB: netSnmpConformance ::= { netSnmp 5 }
Cannot adopt OID in NET-SNMP-MIB: netSnmpNotificationPrefix ::= { netSnmp 4 }
Cannot adopt OID in NET-SNMP-MIB: netSnmpExperimental ::= { netSnmp 9999 }
Cannot adopt OID in NET-SNMP-MIB: netSnmpEnumerations ::= { netSnmp 3 }
Cannot adopt OID in NET-SNMP-MIB: netSnmpObjects ::= { netSnmp 1 }
Cannot adopt OID in ADDER-AIM-MIB: serverDetails ::= { serverDetailsTable 1 }
Cannot adopt OID in UCD-SNMP-MIB: versionDoDebugging ::= { version 20 }
Cannot adopt OID in UCD-SNMP-MIB: versionSavePersistentData ::= { version 13 }
Cannot adopt OID in UCD-SNMP-MIB: versionRestartAgent ::= { version 12 }
Cannot adopt OID in UCD-SNMP-MIB: versionUpdateConfig ::= { version 11 }
Cannot adopt OID in UCD-SNMP-MIB: versionClearCache ::= { version 10 }
Cannot adopt OID in UCD-SNMP-MIB: versionConfigureOptions ::= { version 6 }
Cannot adopt OID in UCD-SNMP-MIB: versionIdent ::= { version 5 }
Cannot adopt OID in UCD-SNMP-MIB: versionCDate ::= { version 4 }
Cannot adopt OID in UCD-SNMP-MIB: versionDate ::= { version 3 }
Cannot adopt OID in UCD-SNMP-MIB: versionTag ::= { version 2 }
Cannot adopt OID in UCD-SNMP-MIB: versionIndex ::= { version 1 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpExampleHeartbeatNotification ::= { netSnmpExampleNotificationPrefix 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsCacheStatus ::= { nsCacheEntry 3 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsCacheTimeout ::= { nsCacheEntry 2 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsCachedOID ::= { nsCacheEntry 1 }
Cannot adopt OID in UCD-SNMP-MIB: unknown ::= { ucdSnmpAgent 255 }
Cannot adopt OID in UCD-SNMP-MIB: dragonfly ::= { ucdSnmpAgent 17 }
Cannot adopt OID in UCD-SNMP-MIB: macosx ::= { ucdSnmpAgent 16 }
Cannot adopt OID in UCD-SNMP-MIB: aix ::= { ucdSnmpAgent 15 }
Cannot adopt OID in UCD-SNMP-MIB: hpux11 ::= { ucdSnmpAgent 14 }
Cannot adopt OID in UCD-SNMP-MIB: win32 ::= { ucdSnmpAgent 13 }
Cannot adopt OID in UCD-SNMP-MIB: openbsd ::= { ucdSnmpAgent 12 }
Cannot adopt OID in UCD-SNMP-MIB: bsdi ::= { ucdSnmpAgent 11 }
Cannot adopt OID in UCD-SNMP-MIB: linux ::= { ucdSnmpAgent 10 }
Cannot adopt OID in UCD-SNMP-MIB: irix ::= { ucdSnmpAgent 9 }
Cannot adopt OID in UCD-SNMP-MIB: freebsd ::= { ucdSnmpAgent 8 }
Cannot adopt OID in UCD-SNMP-MIB: netbsd1 ::= { ucdSnmpAgent 7 }
Cannot adopt OID in UCD-SNMP-MIB: hpux10 ::= { ucdSnmpAgent 6 }
Cannot adopt OID in UCD-SNMP-MIB: ultrix ::= { ucdSnmpAgent 5 }
Cannot adopt OID in UCD-SNMP-MIB: osf ::= { ucdSnmpAgent 4 }
Cannot adopt OID in UCD-SNMP-MIB: solaris ::= { ucdSnmpAgent 3 }
Cannot adopt OID in UCD-SNMP-MIB: sunos4 ::= { ucdSnmpAgent 2 }
Cannot adopt OID in UCD-SNMP-MIB: hpux9 ::= { ucdSnmpAgent 1 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendOutputGroup ::= { nsExtendGroups 2 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendConfigGroup ::= { nsExtendGroups 1 }
Cannot adopt OID in UCD-DISKIO-MIB: diskIOEntry ::= { diskIOTable 1 }
Cannot adopt OID in ADDER-AIM-MIB: conformanceGroups ::= { conformance 0 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccPort10 ::= { ipFwAccEntry 26 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccPort9 ::= { ipFwAccEntry 25 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccPort8 ::= { ipFwAccEntry 24 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccPort7 ::= { ipFwAccEntry 23 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccPort6 ::= { ipFwAccEntry 22 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccPort5 ::= { ipFwAccEntry 21 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccPort4 ::= { ipFwAccEntry 20 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccPort3 ::= { ipFwAccEntry 19 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccPort2 ::= { ipFwAccEntry 18 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccPort1 ::= { ipFwAccEntry 17 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccDstIsRange ::= { ipFwAccEntry 16 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccSrcIsRange ::= { ipFwAccEntry 15 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccNrDstPorts ::= { ipFwAccEntry 14 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccNrSrcPorts ::= { ipFwAccEntry 13 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccPackets ::= { ipFwAccEntry 12 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccBytes ::= { ipFwAccEntry 11 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccDir ::= { ipFwAccEntry 10 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccBidir ::= { ipFwAccEntry 9 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccProto ::= { ipFwAccEntry 8 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccViaAddr ::= { ipFwAccEntry 7 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccViaName ::= { ipFwAccEntry 6 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccDstNetMask ::= { ipFwAccEntry 5 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccDstAddr ::= { ipFwAccEntry 4 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccSrcNetMask ::= { ipFwAccEntry 3 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccSrcAddr ::= { ipFwAccEntry 2 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccIndex ::= { ipFwAccEntry 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsTransactionEntry ::= { nsTransactionTable 1 }
Cannot adopt OID in NET-SNMP-MIB: netSnmpGroups ::= { netSnmpConformance 2 }
Cannot adopt OID in NET-SNMP-MIB: netSnmpCompliances ::= { netSnmpConformance 1 }
Cannot adopt OID in UCD-SNMP-MIB: mrModuleName ::= { mrEntry 2 }
Cannot adopt OID in UCD-SNMP-MIB: mrIndex ::= { mrEntry 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsDebugTokenEntry ::= { nsDebugTokenTable 1 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendStatus ::= { nsExtendConfigEntry 21 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendStorage ::= { nsExtendConfigEntry 20 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendRunType ::= { nsExtendConfigEntry 7 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendExecType ::= { nsExtendConfigEntry 6 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendCacheTime ::= { nsExtendConfigEntry 5 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendInput ::= { nsExtendConfigEntry 4 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendArgs ::= { nsExtendConfigEntry 3 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendCommand ::= { nsExtendConfigEntry 2 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendToken ::= { nsExtendConfigEntry 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsModuleTable ::= { nsMibRegistry 1 }
Cannot adopt OID in NET-SNMP-MIB: netSnmpPlaypen ::= { netSnmpExperimental 9999 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpIETFWGEntry ::= { netSnmpIETFWGTable 1 }
Cannot adopt OID in UCD-SNMP-MIB: prErrFixCmd ::= { prEntry 103 }
Cannot adopt OID in UCD-SNMP-MIB: prErrFix ::= { prEntry 102 }
Cannot adopt OID in UCD-SNMP-MIB: prErrMessage ::= { prEntry 101 }
Cannot adopt OID in UCD-SNMP-MIB: prErrorFlag ::= { prEntry 100 }
Cannot adopt OID in UCD-SNMP-MIB: prCount ::= { prEntry 5 }
Cannot adopt OID in UCD-SNMP-MIB: prMax ::= { prEntry 4 }
Cannot adopt OID in UCD-SNMP-MIB: prMin ::= { prEntry 3 }
Cannot adopt OID in UCD-SNMP-MIB: prNames ::= { prEntry 2 }
Cannot adopt OID in UCD-SNMP-MIB: prIndex ::= { prEntry 1 }
Cannot adopt OID in ADDER-AIM-MIB: eventList ::= { events 0 }
Cannot adopt OID in UCD-DLMOD-MIB: dlmodEntry ::= { dlmodTable 1 }
Cannot adopt OID in UCD-SNMP-MIB: memSwapErrorMsg ::= { memory 101 }
Cannot adopt OID in UCD-SNMP-MIB: memSwapError ::= { memory 100 }
Cannot adopt OID in UCD-SNMP-MIB: memSysAvail ::= { memory 27 }
Cannot adopt OID in UCD-SNMP-MIB: memCachedX ::= { memory 26 }
Cannot adopt OID in UCD-SNMP-MIB: memBufferX ::= { memory 25 }
Cannot adopt OID in UCD-SNMP-MIB: memSharedX ::= { memory 24 }
Cannot adopt OID in UCD-SNMP-MIB: memMinimumSwapX ::= { memory 23 }
Cannot adopt OID in UCD-SNMP-MIB: memTotalFreeX ::= { memory 22 }
Cannot adopt OID in UCD-SNMP-MIB: memAvailRealX ::= { memory 21 }
Cannot adopt OID in UCD-SNMP-MIB: memTotalRealX ::= { memory 20 }
Cannot adopt OID in UCD-SNMP-MIB: memAvailSwapX ::= { memory 19 }
Cannot adopt OID in UCD-SNMP-MIB: memTotalSwapX ::= { memory 18 }
Cannot adopt OID in UCD-SNMP-MIB: memUsedRealTXT ::= { memory 17 }
Cannot adopt OID in UCD-SNMP-MIB: memUsedSwapTXT ::= { memory 16 }
Cannot adopt OID in UCD-SNMP-MIB: memCached ::= { memory 15 }
Cannot adopt OID in UCD-SNMP-MIB: memBuffer ::= { memory 14 }
Cannot adopt OID in UCD-SNMP-MIB: memShared ::= { memory 13 }
Cannot adopt OID in UCD-SNMP-MIB: memMinimumSwap ::= { memory 12 }
Cannot adopt OID in UCD-SNMP-MIB: memTotalFree ::= { memory 11 }
Cannot adopt OID in UCD-SNMP-MIB: memAvailRealTXT ::= { memory 10 }
Cannot adopt OID in UCD-SNMP-MIB: memTotalRealTXT ::= { memory 9 }
Cannot adopt OID in UCD-SNMP-MIB: memAvailSwapTXT ::= { memory 8 }
Cannot adopt OID in UCD-SNMP-MIB: memTotalSwapTXT ::= { memory 7 }
Cannot adopt OID in UCD-SNMP-MIB: memAvailReal ::= { memory 6 }
Cannot adopt OID in UCD-SNMP-MIB: memTotalReal ::= { memory 5 }
Cannot adopt OID in UCD-SNMP-MIB: memAvailSwap ::= { memory 4 }
Cannot adopt OID in UCD-SNMP-MIB: memTotalSwap ::= { memory 3 }
Cannot adopt OID in UCD-SNMP-MIB: memErrorName ::= { memory 2 }
Cannot adopt OID in UCD-SNMP-MIB: memIndex ::= { memory 1 }
Cannot adopt OID in UCD-DEMO-MIB: ucdDemoMIBObjects ::= { ucdDemoMIB 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsModuleTimeout ::= { nsModuleEntry 6 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsModuleModes ::= { nsModuleEntry 5 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsModuleName ::= { nsModuleEntry 4 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsmRegistrationPriority ::= { nsModuleEntry 3 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsmRegistrationPoint ::= { nsModuleEntry 2 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsmContextName ::= { nsModuleEntry 1 }
Cannot adopt OID in NET-SNMP-MIB: netSnmpNotificationObjects ::= { netSnmpNotificationPrefix 1 }
Cannot adopt OID in NET-SNMP-MIB: netSnmpNotifications ::= { netSnmpNotificationPrefix 0 }
Cannot adopt OID in LM-SENSORS-MIB: lmMiscSensorsEntry ::= { lmMiscSensorsTable 1 }
Cannot adopt OID in NET-SNMP-PASS-MIB: netSnmpPassTable ::= { netSnmpPassExamples 2 }
Cannot adopt OID in NET-SNMP-PASS-MIB: netSnmpPassOIDValue ::= { netSnmpPassExamples 99 }
Cannot adopt OID in NET-SNMP-PASS-MIB: netSnmpPassInteger64 ::= { netSnmpPassExamples 8 }
Cannot adopt OID in NET-SNMP-PASS-MIB: netSnmpPassCounter64 ::= { netSnmpPassExamples 7 }
Cannot adopt OID in NET-SNMP-PASS-MIB: netSnmpPassGauge ::= { netSnmpPassExamples 6 }
Cannot adopt OID in NET-SNMP-PASS-MIB: netSnmpPassCounter ::= { netSnmpPassExamples 5 }
Cannot adopt OID in NET-SNMP-PASS-MIB: netSnmpPassIpAddress ::= { netSnmpPassExamples 4 }
Cannot adopt OID in NET-SNMP-PASS-MIB: netSnmpPassTimeTicks ::= { netSnmpPassExamples 3 }
Cannot adopt OID in NET-SNMP-PASS-MIB: netSnmpPassString ::= { netSnmpPassExamples 1 }
Cannot adopt OID in NET-SNMP-MIB: netSnmpDomains ::= { netSnmpEnumerations 3 }
Cannot adopt OID in NET-SNMP-MIB: netSnmpAgentOIDs ::= { netSnmpEnumerations 2 }
Cannot adopt OID in NET-SNMP-MIB: netSnmpModuleIDs ::= { netSnmpEnumerations 1 }
Cannot adopt OID in LM-SENSORS-MIB: lmFanSensorsEntry ::= { lmFanSensorsTable 1 }
Cannot adopt OID in LM-SENSORS-MIB: lmTempSensorsEntry ::= { lmTempSensorsTable 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsModuleGroup ::= { netSnmpGroups 2 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsCacheGroup ::= { netSnmpGroups 4 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsConfigGroups ::= { netSnmpGroups 7 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsTransactionGroup ::= { netSnmpGroups 8 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsAgentNotifyGroup ::= { netSnmpGroups 9 }
Cannot adopt OID in UCD-SNMP-MIB: fileEntry ::= { fileTable 1 }
Cannot adopt OID in ADDER-AIM-MIB: objectsGroup ::= { conformanceGroups 2 }
Cannot adopt OID in ADDER-AIM-MIB: notificationsGroup ::= { conformanceGroups 1 }
Cannot adopt OID in NET-SNMP-VACM-MIB: nsVacmStatus ::= { nsVacmAccessEntry 5 }
Cannot adopt OID in NET-SNMP-VACM-MIB: nsVacmStorageType ::= { nsVacmAccessEntry 4 }
Cannot adopt OID in NET-SNMP-VACM-MIB: nsVacmViewName ::= { nsVacmAccessEntry 3 }
Cannot adopt OID in NET-SNMP-VACM-MIB: nsVacmContextMatch ::= { nsVacmAccessEntry 2 }
Cannot adopt OID in NET-SNMP-VACM-MIB: nsVacmAuthType ::= { nsVacmAccessEntry 1 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: netSnmpExtendMIB ::= { nsExtensions 1 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendObjects ::= { nsExtensions 2 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendGroups ::= { nsExtensions 3 }
Cannot adopt OID in LM-SENSORS-MIB: lmVoltSensorsEntry ::= { lmVoltSensorsTable 1 }
Cannot adopt OID in ADDER-AIM-MIB: anonymous#0 ::= { enterprises 25119 }
Cannot adopt OID in ADDER-AIM-MIB: adderTechnology ::= { enterprises 25119 }
Cannot adopt OID in NET-SNMP-MIB: netSnmp ::= { enterprises 8072 }
Cannot adopt OID in UCD-SNMP-MIB: ucdavis ::= { enterprises 2021 }
Cannot adopt OID in UCD-DISKIO-MIB: diskIOBusyTime ::= { diskIOEntry 14 }
Cannot adopt OID in UCD-DISKIO-MIB: diskIONWrittenX ::= { diskIOEntry 13 }
Cannot adopt OID in UCD-DISKIO-MIB: diskIONReadX ::= { diskIOEntry 12 }
Cannot adopt OID in UCD-DISKIO-MIB: diskIOLA15 ::= { diskIOEntry 11 }
Cannot adopt OID in UCD-DISKIO-MIB: diskIOLA5 ::= { diskIOEntry 10 }
Cannot adopt OID in UCD-DISKIO-MIB: diskIOLA1 ::= { diskIOEntry 9 }
Cannot adopt OID in UCD-DISKIO-MIB: diskIOWrites ::= { diskIOEntry 6 }
Cannot adopt OID in UCD-DISKIO-MIB: diskIOReads ::= { diskIOEntry 5 }
Cannot adopt OID in UCD-DISKIO-MIB: diskIONWritten ::= { diskIOEntry 4 }
Cannot adopt OID in UCD-DISKIO-MIB: diskIONRead ::= { diskIOEntry 3 }
Cannot adopt OID in UCD-DISKIO-MIB: diskIODevice ::= { diskIOEntry 2 }
Cannot adopt OID in UCD-DISKIO-MIB: diskIOIndex ::= { diskIOEntry 1 }
Cannot adopt OID in ADDER-AIM-MIB: serverDiskSpace ::= { serverState 4 }
Cannot adopt OID in ADDER-AIM-MIB: serverSoftwareVersion ::= { serverState 3 }
Cannot adopt OID in ADDER-AIM-MIB: serverMemoryUsage ::= { serverState 2 }
Cannot adopt OID in ADDER-AIM-MIB: serverCPULoad ::= { serverState 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsTransactionMode ::= { nsTransactionEntry 2 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsTransactionID ::= { nsTransactionEntry 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsDebugTokenStatus ::= { nsDebugTokenEntry 4 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsDebugTokenPrefix ::= { nsDebugTokenEntry 2 }
Cannot adopt OID in ADDER-AIM-MIB: adderlinkInfinityManager ::= { anonymous#0 1 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: nsIETFWGChair2 ::= { netSnmpIETFWGEntry 3 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: nsIETFWGChair1 ::= { netSnmpIETFWGEntry 2 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: nsIETFWGName ::= { netSnmpIETFWGEntry 1 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpHostsEntry ::= { netSnmpHostsTable 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsLoggingTable ::= { nsConfigLogging 1 }
Cannot adopt OID in UCD-DLMOD-MIB: dlmodStatus ::= { dlmodEntry 5 }
Cannot adopt OID in UCD-DLMOD-MIB: dlmodError ::= { dlmodEntry 4 }
Cannot adopt OID in UCD-DLMOD-MIB: dlmodPath ::= { dlmodEntry 3 }
Cannot adopt OID in UCD-DLMOD-MIB: dlmodName ::= { dlmodEntry 2 }
Cannot adopt OID in UCD-DLMOD-MIB: dlmodIndex ::= { dlmodEntry 1 }
Cannot adopt OID in NET-SNMP-TC: hpux9 ::= { netSnmpAgentOIDs 1 }
Cannot adopt OID in NET-SNMP-TC: sunos4 ::= { netSnmpAgentOIDs 2 }
Cannot adopt OID in NET-SNMP-TC: solaris ::= { netSnmpAgentOIDs 3 }
Cannot adopt OID in NET-SNMP-TC: osf ::= { netSnmpAgentOIDs 4 }
Cannot adopt OID in NET-SNMP-TC: ultrix ::= { netSnmpAgentOIDs 5 }
Cannot adopt OID in NET-SNMP-TC: hpux10 ::= { netSnmpAgentOIDs 6 }
Cannot adopt OID in NET-SNMP-TC: netbsd ::= { netSnmpAgentOIDs 7 }
Cannot adopt OID in NET-SNMP-TC: freebsd ::= { netSnmpAgentOIDs 8 }
Cannot adopt OID in NET-SNMP-TC: irix ::= { netSnmpAgentOIDs 9 }
Cannot adopt OID in NET-SNMP-TC: linux ::= { netSnmpAgentOIDs 10 }
Cannot adopt OID in NET-SNMP-TC: bsdi ::= { netSnmpAgentOIDs 11 }
Cannot adopt OID in NET-SNMP-TC: openbsd ::= { netSnmpAgentOIDs 12 }
Cannot adopt OID in NET-SNMP-TC: win32 ::= { netSnmpAgentOIDs 13 }
Cannot adopt OID in NET-SNMP-TC: hpux11 ::= { netSnmpAgentOIDs 14 }
Cannot adopt OID in NET-SNMP-TC: aix ::= { netSnmpAgentOIDs 15 }
Cannot adopt OID in NET-SNMP-TC: macosx ::= { netSnmpAgentOIDs 16 }
Cannot adopt OID in NET-SNMP-TC: dragonfly ::= { netSnmpAgentOIDs 17 }
Cannot adopt OID in NET-SNMP-TC: unknown ::= { netSnmpAgentOIDs 255 }
Cannot adopt OID in NET-SNMP-PASS-MIB: netSnmpPassEntry ::= { netSnmpPassTable 1 }
Cannot adopt OID in LM-SENSORS-MIB: lmMiscSensorsValue ::= { lmMiscSensorsEntry 3 }
Cannot adopt OID in LM-SENSORS-MIB: lmMiscSensorsDevice ::= { lmMiscSensorsEntry 2 }
Cannot adopt OID in LM-SENSORS-MIB: lmMiscSensorsIndex ::= { lmMiscSensorsEntry 1 }
Cannot adopt OID in LM-SENSORS-MIB: lmSensors ::= { ucdExperimental 16 }
Cannot adopt OID in UCD-DISKIO-MIB: ucdDiskIOMIB ::= { ucdExperimental 15 }
Cannot adopt OID in UCD-DLMOD-MIB: ucdDlmodMIB ::= { ucdExperimental 14 }
Cannot adopt OID in UCD-IPFWACC-MIB: ucdIpFwAccMIB ::= { ucdExperimental 1 }
Cannot adopt OID in UCD-SNMP-MIB: dskEntry ::= { dskTable 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: netSnmpAgentMIB ::= { netSnmpModuleIDs 2 }
Cannot adopt OID in NET-SNMP-TC: netSnmpTCs ::= { netSnmpModuleIDs 1 }
Cannot adopt OID in LM-SENSORS-MIB: lmFanSensorsValue ::= { lmFanSensorsEntry 3 }
Cannot adopt OID in LM-SENSORS-MIB: lmFanSensorsDevice ::= { lmFanSensorsEntry 2 }
Cannot adopt OID in LM-SENSORS-MIB: lmFanSensorsIndex ::= { lmFanSensorsEntry 1 }
Cannot adopt OID in LM-SENSORS-MIB: lmTempSensorsValue ::= { lmTempSensorsEntry 3 }
Cannot adopt OID in LM-SENSORS-MIB: lmTempSensorsDevice ::= { lmTempSensorsEntry 2 }
Cannot adopt OID in LM-SENSORS-MIB: lmTempSensorsIndex ::= { lmTempSensorsEntry 1 }
Cannot adopt OID in UCD-SNMP-MIB: logMatchTable ::= { logMatch 2 }
Cannot adopt OID in UCD-SNMP-MIB: logMatchMaxEntries ::= { logMatch 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsLoggingEntry ::= { nsLoggingTable 1 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccTable ::= { ucdIpFwAccMIB 1 }
Cannot adopt OID in UCD-SNMP-MIB: fileErrorMsg ::= { fileEntry 101 }
Cannot adopt OID in UCD-SNMP-MIB: fileErrorFlag ::= { fileEntry 100 }
Cannot adopt OID in UCD-SNMP-MIB: fileMax ::= { fileEntry 4 }
Cannot adopt OID in UCD-SNMP-MIB: fileSize ::= { fileEntry 3 }
Cannot adopt OID in UCD-SNMP-MIB: fileName ::= { fileEntry 2 }
Cannot adopt OID in UCD-SNMP-MIB: fileIndex ::= { fileEntry 1 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendOutput2Table ::= { nsExtendObjects 4 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendOutput1Table ::= { nsExtendObjects 3 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendConfigTable ::= { nsExtendObjects 2 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendNumEntries ::= { nsExtendObjects 1 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendOutput1Entry ::= { nsExtendOutput1Table 1 }
Cannot adopt OID in ADDER-AIM-MIB: packetsDropped ::= { packetLossData 3 }
Cannot adopt OID in ADDER-AIM-MIB: packetsSent ::= { packetLossData 2 }
Cannot adopt OID in ADDER-AIM-MIB: rxHead ::= { packetLossData 1 }
Cannot adopt OID in UCD-SNMP-MIB: ssCpuNumCpus ::= { systemStats 67 }
Cannot adopt OID in UCD-SNMP-MIB: ssCpuRawGuestNice ::= { systemStats 66 }
Cannot adopt OID in UCD-SNMP-MIB: ssCpuRawGuest ::= { systemStats 65 }
Cannot adopt OID in UCD-SNMP-MIB: ssCpuRawSteal ::= { systemStats 64 }
Cannot adopt OID in UCD-SNMP-MIB: ssRawSwapOut ::= { systemStats 63 }
Cannot adopt OID in UCD-SNMP-MIB: ssRawSwapIn ::= { systemStats 62 }
Cannot adopt OID in UCD-SNMP-MIB: ssCpuRawSoftIRQ ::= { systemStats 61 }
Cannot adopt OID in UCD-SNMP-MIB: ssRawContexts ::= { systemStats 60 }
Cannot adopt OID in UCD-SNMP-MIB: ssRawInterrupts ::= { systemStats 59 }
Cannot adopt OID in UCD-SNMP-MIB: ssIORawReceived ::= { systemStats 58 }
Cannot adopt OID in UCD-SNMP-MIB: ssIORawSent ::= { systemStats 57 }
Cannot adopt OID in UCD-SNMP-MIB: ssCpuRawInterrupt ::= { systemStats 56 }
Cannot adopt OID in UCD-SNMP-MIB: ssCpuRawKernel ::= { systemStats 55 }
Cannot adopt OID in UCD-SNMP-MIB: ssCpuRawWait ::= { systemStats 54 }
Cannot adopt OID in UCD-SNMP-MIB: ssCpuRawIdle ::= { systemStats 53 }
Cannot adopt OID in UCD-SNMP-MIB: ssCpuRawSystem ::= { systemStats 52 }
Cannot adopt OID in UCD-SNMP-MIB: ssCpuRawNice ::= { systemStats 51 }
Cannot adopt OID in UCD-SNMP-MIB: ssCpuRawUser ::= { systemStats 50 }
Cannot adopt OID in UCD-SNMP-MIB: ssCpuIdle ::= { systemStats 11 }
Cannot adopt OID in UCD-SNMP-MIB: ssCpuSystem ::= { systemStats 10 }
Cannot adopt OID in UCD-SNMP-MIB: ssCpuUser ::= { systemStats 9 }
Cannot adopt OID in UCD-SNMP-MIB: ssSysContext ::= { systemStats 8 }
Cannot adopt OID in UCD-SNMP-MIB: ssSysInterrupts ::= { systemStats 7 }
Cannot adopt OID in UCD-SNMP-MIB: ssIOReceive ::= { systemStats 6 }
Cannot adopt OID in UCD-SNMP-MIB: ssIOSent ::= { systemStats 5 }
Cannot adopt OID in UCD-SNMP-MIB: ssSwapOut ::= { systemStats 4 }
Cannot adopt OID in UCD-SNMP-MIB: ssSwapIn ::= { systemStats 3 }
Cannot adopt OID in UCD-SNMP-MIB: ssErrorName ::= { systemStats 2 }
Cannot adopt OID in UCD-SNMP-MIB: ssIndex ::= { systemStats 1 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendOutput2Entry ::= { nsExtendOutput2Table 1 }
Cannot adopt OID in UCD-SNMP-MIB: laEntry ::= { laTable 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsCacheTable ::= { nsCache 3 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsCacheEnabled ::= { nsCache 2 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsCacheDefaultTimeout ::= { nsCache 1 }
Cannot adopt OID in UCD-SNMP-MIB: logMatchEntry ::= { logMatchTable 1 }
Cannot adopt OID in UCD-SNMP-MIB: extEntry ::= { extTable 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsConfigLogging ::= { nsConfiguration 2 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsConfigDebug ::= { nsConfiguration 1 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpExampleString ::= { netSnmpExampleScalars 3 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpExampleSleeper ::= { netSnmpExampleScalars 2 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpExampleInteger ::= { netSnmpExampleScalars 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsCacheEntry ::= { nsCacheTable 1 }
Cannot adopt OID in LM-SENSORS-MIB: lmVoltSensorsValue ::= { lmVoltSensorsEntry 3 }
Cannot adopt OID in LM-SENSORS-MIB: lmVoltSensorsDevice ::= { lmVoltSensorsEntry 2 }
Cannot adopt OID in LM-SENSORS-MIB: lmVoltSensorsIndex ::= { lmVoltSensorsEntry 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsDebugTokenTable ::= { nsConfigDebug 4 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsDebugDumpPdu ::= { nsConfigDebug 3 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsDebugOutputAll ::= { nsConfigDebug 2 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsDebugEnabled ::= { nsConfigDebug 1 }
Cannot adopt OID in ADDER-AIM-MIB: serverStatusChangedEv ::= { eventList 3 }
Cannot adopt OID in ADDER-AIM-MIB: packetLossEv ::= { eventList 2 }
Cannot adopt OID in ADDER-AIM-MIB: deviceEthStatusChangedEv ::= { eventList 1 }
Cannot adopt OID in UCD-DEMO-MIB: ucdDemoPassphrase ::= { ucdDemoPublic 4 }
Cannot adopt OID in UCD-DEMO-MIB: ucdDemoUserList ::= { ucdDemoPublic 3 }
Cannot adopt OID in UCD-DEMO-MIB: ucdDemoPublicString ::= { ucdDemoPublic 2 }
Cannot adopt OID in UCD-DEMO-MIB: ucdDemoResetKeys ::= { ucdDemoPublic 1 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpExampleHeartbeatName ::= { netSnmpExampleNotificationObjects 2 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpExampleHeartbeatRate ::= { netSnmpExampleNotificationObjects 1 }
Cannot adopt OID in NET-SNMP-PASS-MIB: netSnmpPassExamples ::= { netSnmpExamples 255 }
Cannot adopt OID in NET-SNMP-VACM-MIB: nsVacmAccessTable ::= { netSnmpVacmMIB 1 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpExampleNotifications ::= { netSnmpExamples 3 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpExampleTables ::= { netSnmpExamples 2 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpExampleScalars ::= { netSnmpExamples 1 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccEntry ::= { ipFwAccTable 1 }
Cannot adopt OID in UCD-SNMP-MIB: ucdShutdown ::= { ucdTraps 2 }
Cannot adopt OID in UCD-SNMP-MIB: ucdStart ::= { ucdTraps 1 }
Cannot adopt OID in LM-SENSORS-MIB: lmMiscSensorsTable ::= { lmSensors 5 }
Cannot adopt OID in LM-SENSORS-MIB: lmVoltSensorsTable ::= { lmSensors 4 }
Cannot adopt OID in LM-SENSORS-MIB: lmFanSensorsTable ::= { lmSensors 3 }
Cannot adopt OID in LM-SENSORS-MIB: lmTempSensorsTable ::= { lmSensors 2 }
Cannot adopt OID in LM-SENSORS-MIB: lmSensorsMIB ::= { lmSensors 1 }
Cannot adopt OID in UCD-SNMP-MIB: mrEntry ::= { mrTable 1 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendConfigEntry ::= { nsExtendConfigTable 1 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpHostRowStatus ::= { netSnmpHostsEntry 5 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpHostStorage ::= { netSnmpHostsEntry 4 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpHostAddress ::= { netSnmpHostsEntry 3 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpHostAddressType ::= { netSnmpHostsEntry 2 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpHostName ::= { netSnmpHostsEntry 1 }
Cannot adopt OID in UCD-SNMP-MIB: prEntry ::= { prTable 1 }
Cannot adopt OID in ADDER-AIM-MIB: deviceEth2Status ::= { infinity 40 }
Cannot adopt OID in ADDER-AIM-MIB: deviceEth1Status ::= { infinity 30 }
Cannot adopt OID in ADDER-AIM-MIB: deviceLock ::= { infinity 21 }
Cannot adopt OID in ADDER-AIM-MIB: deviceStatus ::= { infinity 20 }
Cannot adopt OID in ADDER-AIM-MIB: deviceSerialNum ::= { infinity 10 }
Cannot adopt OID in ADDER-AIM-MIB: deviceMAC2 ::= { infinity 9 }
Cannot adopt OID in ADDER-AIM-MIB: deviceIP2 ::= { infinity 8 }
Cannot adopt OID in ADDER-AIM-MIB: deviceMAC1 ::= { infinity 7 }
Cannot adopt OID in ADDER-AIM-MIB: deviceIP1 ::= { infinity 6 }
Cannot adopt OID in ADDER-AIM-MIB: deviceIdentifier ::= { infinity 5 }
Cannot adopt OID in ADDER-AIM-MIB: deviceName ::= { infinity 4 }
Cannot adopt OID in ADDER-AIM-MIB: deviceFirmware ::= { infinity 3 }
Cannot adopt OID in ADDER-AIM-MIB: deviceType ::= { infinity 2 }
Cannot adopt OID in ADDER-AIM-MIB: deviceIndex ::= { infinity 1 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpExampleNotification ::= { netSnmpExampleNotifications 1 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpExampleNotificationObjects ::= { netSnmpExampleNotifications 2 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpExampleNotificationPrefix ::= { netSnmpExampleNotifications 0 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpHostsTable ::= { netSnmpExampleTables 2 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpIETFWGTable ::= { netSnmpExampleTables 1 }
Cannot adopt OID in NET-SNMP-PASS-MIB: netSnmpPassOID ::= { netSnmpPassEntry 3 }
Cannot adopt OID in NET-SNMP-PASS-MIB: netSnmpPassInteger ::= { netSnmpPassEntry 2 }
Cannot adopt OID in NET-SNMP-PASS-MIB: netSnmpPassIndex ::= { netSnmpPassEntry 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsVersion ::= { netSnmpObjects 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsMibRegistry ::= { netSnmpObjects 2 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsExtensions ::= { netSnmpObjects 3 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsDLMod ::= { netSnmpObjects 4 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsCache ::= { netSnmpObjects 5 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsErrorHistory ::= { netSnmpObjects 6 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsConfiguration ::= { netSnmpObjects 7 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsTransactions ::= { netSnmpObjects 8 }
Cannot adopt OID in NET-SNMP-VACM-MIB: netSnmpVacmMIB ::= { netSnmpObjects 9 }
Cannot adopt OID in UCD-DEMO-MIB: ucdDemoMIB ::= { ucdavis 14 }
Cannot adopt OID in UCD-SNMP-MIB: logMatch ::= { ucdavis 16 }
Cannot adopt OID in UCD-SNMP-MIB: fileTable ::= { ucdavis 15 }
Cannot adopt OID in UCD-SNMP-MIB: ucdTraps ::= { ucdavis 251 }
Cannot adopt OID in UCD-SNMP-MIB: systemStats ::= { ucdavis 11 }
Cannot adopt OID in UCD-SNMP-MIB: mrTable ::= { ucdavis 102 }
Cannot adopt OID in UCD-SNMP-MIB: snmperrs ::= { ucdavis 101 }
Cannot adopt OID in UCD-SNMP-MIB: version ::= { ucdavis 100 }
Cannot adopt OID in UCD-SNMP-MIB: laTable ::= { ucdavis 10 }
Cannot adopt OID in UCD-SNMP-MIB: dskTable ::= { ucdavis 9 }
Cannot adopt OID in UCD-SNMP-MIB: memory ::= { ucdavis 4 }
Cannot adopt OID in UCD-SNMP-MIB: extTable ::= { ucdavis 8 }
Cannot adopt OID in UCD-SNMP-MIB: prTable ::= { ucdavis 2 }
Cannot adopt OID in UCD-SNMP-MIB: ucdSnmpAgent ::= { ucdavis 250 }
Cannot adopt OID in UCD-SNMP-MIB: ucdExperimental ::= { ucdavis 13 }
Cannot adopt OID in UCD-SNMP-MIB: ucdInternal ::= { ucdavis 12 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsModuleEntry ::= { nsModuleTable 1 }
Cannot adopt OID in NET-SNMP-TC: netSnmpTCPDomain ::= { netSnmpDomains 1 }
Cannot adopt OID in NET-SNMP-TC: netSnmpUnixDomain ::= { netSnmpDomains 2 }
Cannot adopt OID in NET-SNMP-TC: netSnmpAAL5PVCDomain ::= { netSnmpDomains 3 }
Cannot adopt OID in NET-SNMP-TC: netSnmpUDPIPv6Domain ::= { netSnmpDomains 4 }
Cannot adopt OID in NET-SNMP-TC: netSnmpTCPIPv6Domain ::= { netSnmpDomains 5 }
Cannot adopt OID in NET-SNMP-TC: netSnmpCallbackDomain ::= { netSnmpDomains 6 }
Cannot adopt OID in NET-SNMP-TC: netSnmpAliasDomain ::= { netSnmpDomains 7 }
Cannot adopt OID in NET-SNMP-TC: netSnmpDTLSUDPDomain ::= { netSnmpDomains 8 }
Cannot adopt OID in NET-SNMP-TC: netSnmpDTLSSCTPDomain ::= { netSnmpDomains 9 }
Cannot adopt OID in NET-SNMP-TC: netSnmpTLSTCPDomain ::= { netSnmpDomains 10 }
Cannot adopt OID in ADDER-AIM-MIB: infinity ::= { infinityTable 1 }
Cannot adopt OID in ADDER-AIM-MIB: serverDetailsTable ::= { adderlinkInfinityManager 7 }
Cannot adopt OID in ADDER-AIM-MIB: conformance ::= { adderlinkInfinityManager 6 }
Cannot adopt OID in ADDER-AIM-MIB: packetLossData ::= { adderlinkInfinityManager 5 }
Cannot adopt OID in ADDER-AIM-MIB: events ::= { adderlinkInfinityManager 4 }
Cannot adopt OID in ADDER-AIM-MIB: serverState ::= { adderlinkInfinityManager 3 }
Cannot adopt OID in ADDER-AIM-MIB: deviceNetwork ::= { adderlinkInfinityManager 2 }
Cannot adopt OID in ADDER-AIM-MIB: infinityTable ::= { adderlinkInfinityManager 1 }
Cannot adopt OID in UCD-SNMP-MIB: dskErrorMsg ::= { dskEntry 101 }
Cannot adopt OID in UCD-SNMP-MIB: dskErrorFlag ::= { dskEntry 100 }
Cannot adopt OID in UCD-SNMP-MIB: dskUsedHigh ::= { dskEntry 16 }
Cannot adopt OID in UCD-SNMP-MIB: dskUsedLow ::= { dskEntry 15 }
Cannot adopt OID in UCD-SNMP-MIB: dskAvailHigh ::= { dskEntry 14 }
Cannot adopt OID in UCD-SNMP-MIB: dskAvailLow ::= { dskEntry 13 }
Cannot adopt OID in UCD-SNMP-MIB: dskTotalHigh ::= { dskEntry 12 }
Cannot adopt OID in UCD-SNMP-MIB: dskTotalLow ::= { dskEntry 11 }
Cannot adopt OID in UCD-SNMP-MIB: dskPercentNode ::= { dskEntry 10 }
Cannot adopt OID in UCD-SNMP-MIB: dskPercent ::= { dskEntry 9 }
Cannot adopt OID in UCD-SNMP-MIB: dskUsed ::= { dskEntry 8 }
Cannot adopt OID in UCD-SNMP-MIB: dskAvail ::= { dskEntry 7 }
Cannot adopt OID in UCD-SNMP-MIB: dskTotal ::= { dskEntry 6 }
Cannot adopt OID in UCD-SNMP-MIB: dskMinPercent ::= { dskEntry 5 }
Cannot adopt OID in UCD-SNMP-MIB: dskMinimum ::= { dskEntry 4 }
Cannot adopt OID in UCD-SNMP-MIB: dskDevice ::= { dskEntry 3 }
Cannot adopt OID in UCD-SNMP-MIB: dskPath ::= { dskEntry 2 }
Cannot adopt OID in UCD-SNMP-MIB: dskIndex ::= { dskEntry 1 }
Cannot adopt OID in UCD-DISKIO-MIB: diskIOTable ::= { ucdDiskIOMIB 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsLoggingGroup ::= { nsConfigGroups 2 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsDebugGroup ::= { nsConfigGroups 1 }
Cannot adopt OID in UCD-SNMP-MIB: snmperrErrMessage ::= { snmperrs 101 }
Cannot adopt OID in UCD-SNMP-MIB: snmperrErrorFlag ::= { snmperrs 100 }
Cannot adopt OID in UCD-SNMP-MIB: snmperrNames ::= { snmperrs 2 }
Cannot adopt OID in UCD-SNMP-MIB: snmperrIndex ::= { snmperrs 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsTransactionTable ::= { nsTransactions 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsLogStatus ::= { nsLoggingEntry 5 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsLogMaxLevel ::= { nsLoggingEntry 4 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsLogType ::= { nsLoggingEntry 3 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsLogToken ::= { nsLoggingEntry 2 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsLogLevel ::= { nsLoggingEntry 1 }
Cannot adopt OID in ADDER-AIM-MIB: numActiveConnexions ::= { deviceNetwork 3 }
Cannot adopt OID in ADDER-AIM-MIB: numTx ::= { deviceNetwork 2 }
Cannot adopt OID in ADDER-AIM-MIB: numRx ::= { deviceNetwork 1 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendResult ::= { nsExtendOutput1Entry 4 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendOutNumLines ::= { nsExtendOutput1Entry 3 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendOutputFull ::= { nsExtendOutput1Entry 2 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendOutput1Line ::= { nsExtendOutput1Entry 1 }
Cannot adopt OID in ADDER-AIM-MIB: serverMAC2 ::= { serverDetails 9 }
Cannot adopt OID in ADDER-AIM-MIB: serverIP2 ::= { serverDetails 8 }
Cannot adopt OID in ADDER-AIM-MIB: serverEth1Enabled ::= { serverDetails 7 }
Cannot adopt OID in ADDER-AIM-MIB: serverMAC1 ::= { serverDetails 6 }
Cannot adopt OID in ADDER-AIM-MIB: serverIP1 ::= { serverDetails 5 }
Cannot adopt OID in ADDER-AIM-MIB: serverStatus ::= { serverDetails 4 }
Cannot adopt OID in ADDER-AIM-MIB: serverRole ::= { serverDetails 3 }
Cannot adopt OID in ADDER-AIM-MIB: serverName ::= { serverDetails 2 }
Cannot adopt OID in ADDER-AIM-MIB: serverId ::= { serverDetails 1 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendOutLine ::= { nsExtendOutput2Entry 2 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendLineIndex ::= { nsExtendOutput2Entry 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsNotifyStart ::= { netSnmpNotifications 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsNotifyShutdown ::= { netSnmpNotifications 2 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsNotifyRestart ::= { netSnmpNotifications 3 }
Cannot adopt OID in UCD-SNMP-MIB: laErrMessage ::= { laEntry 101 }
Cannot adopt OID in UCD-SNMP-MIB: laErrorFlag ::= { laEntry 100 }
Cannot adopt OID in UCD-SNMP-MIB: laLoadFloat ::= { laEntry 6 }
Cannot adopt OID in UCD-SNMP-MIB: laLoadInt ::= { laEntry 5 }
Cannot adopt OID in UCD-SNMP-MIB: laConfig ::= { laEntry 4 }
Cannot adopt OID in UCD-SNMP-MIB: laLoad ::= { laEntry 3 }
Cannot adopt OID in UCD-SNMP-MIB: laNames ::= { laEntry 2 }
Cannot adopt OID in UCD-SNMP-MIB: laIndex ::= { laEntry 1 }
Cannot adopt OID in UCD-SNMP-MIB: logMatchIndex ::= { logMatchEntry 1 }
Cannot adopt OID in UCD-SNMP-MIB: logMatchName ::= { logMatchEntry 2 }
Cannot adopt OID in UCD-SNMP-MIB: logMatchFilename ::= { logMatchEntry 3 }
Cannot adopt OID in UCD-SNMP-MIB: logMatchRegEx ::= { logMatchEntry 4 }
Cannot adopt OID in UCD-SNMP-MIB: logMatchGlobalCounter ::= { logMatchEntry 5 }
Cannot adopt OID in UCD-SNMP-MIB: logMatchGlobalCount ::= { logMatchEntry 6 }
Cannot adopt OID in UCD-SNMP-MIB: logMatchCurrentCounter ::= { logMatchEntry 7 }
Cannot adopt OID in UCD-SNMP-MIB: logMatchCurrentCount ::= { logMatchEntry 8 }
Cannot adopt OID in UCD-SNMP-MIB: logMatchCounter ::= { logMatchEntry 9 }
Cannot adopt OID in UCD-SNMP-MIB: logMatchCount ::= { logMatchEntry 10 }
Cannot adopt OID in UCD-SNMP-MIB: logMatchCycle ::= { logMatchEntry 11 }
Cannot adopt OID in UCD-SNMP-MIB: logMatchErrorFlag ::= { logMatchEntry 100 }
Cannot adopt OID in UCD-SNMP-MIB: logMatchRegExCompilation ::= { logMatchEntry 101 }
Cannot adopt OID in NET-SNMP-VACM-MIB: nsVacmAccessEntry ::= { nsVacmAccessTable 1 }
Cannot adopt OID in UCD-DEMO-MIB: ucdDemoPublic ::= { ucdDemoMIBObjects 1 }
Cannot adopt OID in UCD-SNMP-MIB: extIndex ::= { extEntry 1 }
Cannot adopt OID in UCD-SNMP-MIB: extNames ::= { extEntry 2 }
Cannot adopt OID in UCD-SNMP-MIB: extCommand ::= { extEntry 3 }
Cannot adopt OID in UCD-SNMP-MIB: extResult ::= { extEntry 100 }
Cannot adopt OID in UCD-SNMP-MIB: extOutput ::= { extEntry 101 }
Cannot adopt OID in UCD-SNMP-MIB: extErrFix ::= { extEntry 102 }
Cannot adopt OID in UCD-SNMP-MIB: extErrFixCmd ::= { extEntry 103 }
Cannot adopt OID in UCD-DLMOD-MIB: dlmodNextIndex ::= { ucdDlmodMIB 1 }
Cannot adopt OID in UCD-DLMOD-MIB: dlmodTable ::= { ucdDlmodMIB 2 }
Cannot adopt OID in ADDER-AIM-MIB: serverDetails ::= { serverDetailsTable 1 }
Cannot adopt OID in NET-SNMP-MIB: netSnmpObjects ::= { netSnmp 1 }
Cannot adopt OID in NET-SNMP-MIB: netSnmpEnumerations ::= { netSnmp 3 }
Cannot adopt OID in NET-SNMP-MIB: netSnmpExperimental ::= { netSnmp 9999 }
Cannot adopt OID in NET-SNMP-MIB: netSnmpNotificationPrefix ::= { netSnmp 4 }
Cannot adopt OID in NET-SNMP-MIB: netSnmpConformance ::= { netSnmp 5 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpExamples ::= { netSnmp 2 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpExampleHeartbeatNotification ::= { netSnmpExampleNotificationPrefix 1 }
Cannot adopt OID in UCD-SNMP-MIB: versionIndex ::= { version 1 }
Cannot adopt OID in UCD-SNMP-MIB: versionTag ::= { version 2 }
Cannot adopt OID in UCD-SNMP-MIB: versionDate ::= { version 3 }
Cannot adopt OID in UCD-SNMP-MIB: versionCDate ::= { version 4 }
Cannot adopt OID in UCD-SNMP-MIB: versionIdent ::= { version 5 }
Cannot adopt OID in UCD-SNMP-MIB: versionConfigureOptions ::= { version 6 }
Cannot adopt OID in UCD-SNMP-MIB: versionClearCache ::= { version 10 }
Cannot adopt OID in UCD-SNMP-MIB: versionUpdateConfig ::= { version 11 }
Cannot adopt OID in UCD-SNMP-MIB: versionRestartAgent ::= { version 12 }
Cannot adopt OID in UCD-SNMP-MIB: versionSavePersistentData ::= { version 13 }
Cannot adopt OID in UCD-SNMP-MIB: versionDoDebugging ::= { version 20 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsCachedOID ::= { nsCacheEntry 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsCacheTimeout ::= { nsCacheEntry 2 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsCacheStatus ::= { nsCacheEntry 3 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendConfigGroup ::= { nsExtendGroups 1 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendOutputGroup ::= { nsExtendGroups 2 }
Cannot adopt OID in UCD-SNMP-MIB: hpux9 ::= { ucdSnmpAgent 1 }
Cannot adopt OID in UCD-SNMP-MIB: sunos4 ::= { ucdSnmpAgent 2 }
Cannot adopt OID in UCD-SNMP-MIB: solaris ::= { ucdSnmpAgent 3 }
Cannot adopt OID in UCD-SNMP-MIB: osf ::= { ucdSnmpAgent 4 }
Cannot adopt OID in UCD-SNMP-MIB: ultrix ::= { ucdSnmpAgent 5 }
Cannot adopt OID in UCD-SNMP-MIB: hpux10 ::= { ucdSnmpAgent 6 }
Cannot adopt OID in UCD-SNMP-MIB: netbsd1 ::= { ucdSnmpAgent 7 }
Cannot adopt OID in UCD-SNMP-MIB: freebsd ::= { ucdSnmpAgent 8 }
Cannot adopt OID in UCD-SNMP-MIB: irix ::= { ucdSnmpAgent 9 }
Cannot adopt OID in UCD-SNMP-MIB: linux ::= { ucdSnmpAgent 10 }
Cannot adopt OID in UCD-SNMP-MIB: bsdi ::= { ucdSnmpAgent 11 }
Cannot adopt OID in UCD-SNMP-MIB: openbsd ::= { ucdSnmpAgent 12 }
Cannot adopt OID in UCD-SNMP-MIB: win32 ::= { ucdSnmpAgent 13 }
Cannot adopt OID in UCD-SNMP-MIB: hpux11 ::= { ucdSnmpAgent 14 }
Cannot adopt OID in UCD-SNMP-MIB: aix ::= { ucdSnmpAgent 15 }
Cannot adopt OID in UCD-SNMP-MIB: macosx ::= { ucdSnmpAgent 16 }
Cannot adopt OID in UCD-SNMP-MIB: dragonfly ::= { ucdSnmpAgent 17 }
Cannot adopt OID in UCD-SNMP-MIB: unknown ::= { ucdSnmpAgent 255 }
Cannot adopt OID in ADDER-AIM-MIB: conformanceGroups ::= { conformance 0 }
Cannot adopt OID in UCD-DISKIO-MIB: diskIOEntry ::= { diskIOTable 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsTransactionEntry ::= { nsTransactionTable 1 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccIndex ::= { ipFwAccEntry 1 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccSrcAddr ::= { ipFwAccEntry 2 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccSrcNetMask ::= { ipFwAccEntry 3 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccDstAddr ::= { ipFwAccEntry 4 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccDstNetMask ::= { ipFwAccEntry 5 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccViaName ::= { ipFwAccEntry 6 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccViaAddr ::= { ipFwAccEntry 7 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccProto ::= { ipFwAccEntry 8 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccBidir ::= { ipFwAccEntry 9 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccDir ::= { ipFwAccEntry 10 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccBytes ::= { ipFwAccEntry 11 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccPackets ::= { ipFwAccEntry 12 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccNrSrcPorts ::= { ipFwAccEntry 13 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccNrDstPorts ::= { ipFwAccEntry 14 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccSrcIsRange ::= { ipFwAccEntry 15 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccDstIsRange ::= { ipFwAccEntry 16 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccPort1 ::= { ipFwAccEntry 17 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccPort2 ::= { ipFwAccEntry 18 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccPort3 ::= { ipFwAccEntry 19 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccPort4 ::= { ipFwAccEntry 20 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccPort5 ::= { ipFwAccEntry 21 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccPort6 ::= { ipFwAccEntry 22 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccPort7 ::= { ipFwAccEntry 23 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccPort8 ::= { ipFwAccEntry 24 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccPort9 ::= { ipFwAccEntry 25 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccPort10 ::= { ipFwAccEntry 26 }
Cannot adopt OID in NET-SNMP-MIB: netSnmpCompliances ::= { netSnmpConformance 1 }
Cannot adopt OID in NET-SNMP-MIB: netSnmpGroups ::= { netSnmpConformance 2 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendToken ::= { nsExtendConfigEntry 1 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendCommand ::= { nsExtendConfigEntry 2 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendArgs ::= { nsExtendConfigEntry 3 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendInput ::= { nsExtendConfigEntry 4 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendCacheTime ::= { nsExtendConfigEntry 5 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendExecType ::= { nsExtendConfigEntry 6 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendRunType ::= { nsExtendConfigEntry 7 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendStorage ::= { nsExtendConfigEntry 20 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendStatus ::= { nsExtendConfigEntry 21 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsDebugTokenEntry ::= { nsDebugTokenTable 1 }
Cannot adopt OID in UCD-SNMP-MIB: mrIndex ::= { mrEntry 1 }
Cannot adopt OID in UCD-SNMP-MIB: mrModuleName ::= { mrEntry 2 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsModuleTable ::= { nsMibRegistry 1 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpIETFWGEntry ::= { netSnmpIETFWGTable 1 }
Cannot adopt OID in NET-SNMP-MIB: netSnmpPlaypen ::= { netSnmpExperimental 9999 }
Cannot adopt OID in UCD-SNMP-MIB: prIndex ::= { prEntry 1 }
Cannot adopt OID in UCD-SNMP-MIB: prNames ::= { prEntry 2 }
Cannot adopt OID in UCD-SNMP-MIB: prMin ::= { prEntry 3 }
Cannot adopt OID in UCD-SNMP-MIB: prMax ::= { prEntry 4 }
Cannot adopt OID in UCD-SNMP-MIB: prCount ::= { prEntry 5 }
Cannot adopt OID in UCD-SNMP-MIB: prErrorFlag ::= { prEntry 100 }
Cannot adopt OID in UCD-SNMP-MIB: prErrMessage ::= { prEntry 101 }
Cannot adopt OID in UCD-SNMP-MIB: prErrFix ::= { prEntry 102 }
Cannot adopt OID in UCD-SNMP-MIB: prErrFixCmd ::= { prEntry 103 }
Cannot adopt OID in ADDER-AIM-MIB: eventList ::= { events 0 }
Cannot adopt OID in UCD-DLMOD-MIB: dlmodEntry ::= { dlmodTable 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsmContextName ::= { nsModuleEntry 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsmRegistrationPoint ::= { nsModuleEntry 2 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsmRegistrationPriority ::= { nsModuleEntry 3 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsModuleName ::= { nsModuleEntry 4 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsModuleModes ::= { nsModuleEntry 5 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsModuleTimeout ::= { nsModuleEntry 6 }
Cannot adopt OID in UCD-DEMO-MIB: ucdDemoMIBObjects ::= { ucdDemoMIB 1 }
Cannot adopt OID in UCD-SNMP-MIB: memIndex ::= { memory 1 }
Cannot adopt OID in UCD-SNMP-MIB: memErrorName ::= { memory 2 }
Cannot adopt OID in UCD-SNMP-MIB: memTotalSwap ::= { memory 3 }
Cannot adopt OID in UCD-SNMP-MIB: memAvailSwap ::= { memory 4 }
Cannot adopt OID in UCD-SNMP-MIB: memTotalReal ::= { memory 5 }
Cannot adopt OID in UCD-SNMP-MIB: memAvailReal ::= { memory 6 }
Cannot adopt OID in UCD-SNMP-MIB: memTotalSwapTXT ::= { memory 7 }
Cannot adopt OID in UCD-SNMP-MIB: memAvailSwapTXT ::= { memory 8 }
Cannot adopt OID in UCD-SNMP-MIB: memTotalRealTXT ::= { memory 9 }
Cannot adopt OID in UCD-SNMP-MIB: memAvailRealTXT ::= { memory 10 }
Cannot adopt OID in UCD-SNMP-MIB: memTotalFree ::= { memory 11 }
Cannot adopt OID in UCD-SNMP-MIB: memMinimumSwap ::= { memory 12 }
Cannot adopt OID in UCD-SNMP-MIB: memShared ::= { memory 13 }
Cannot adopt OID in UCD-SNMP-MIB: memBuffer ::= { memory 14 }
Cannot adopt OID in UCD-SNMP-MIB: memCached ::= { memory 15 }
Cannot adopt OID in UCD-SNMP-MIB: memUsedSwapTXT ::= { memory 16 }
Cannot adopt OID in UCD-SNMP-MIB: memUsedRealTXT ::= { memory 17 }
Cannot adopt OID in UCD-SNMP-MIB: memTotalSwapX ::= { memory 18 }
Cannot adopt OID in UCD-SNMP-MIB: memAvailSwapX ::= { memory 19 }
Cannot adopt OID in UCD-SNMP-MIB: memTotalRealX ::= { memory 20 }
Cannot adopt OID in UCD-SNMP-MIB: memAvailRealX ::= { memory 21 }
Cannot adopt OID in UCD-SNMP-MIB: memTotalFreeX ::= { memory 22 }
Cannot adopt OID in UCD-SNMP-MIB: memMinimumSwapX ::= { memory 23 }
Cannot adopt OID in UCD-SNMP-MIB: memSharedX ::= { memory 24 }
Cannot adopt OID in UCD-SNMP-MIB: memBufferX ::= { memory 25 }
Cannot adopt OID in UCD-SNMP-MIB: memCachedX ::= { memory 26 }
Cannot adopt OID in UCD-SNMP-MIB: memSysAvail ::= { memory 27 }
Cannot adopt OID in UCD-SNMP-MIB: memSwapError ::= { memory 100 }
Cannot adopt OID in UCD-SNMP-MIB: memSwapErrorMsg ::= { memory 101 }
Cannot adopt OID in LM-SENSORS-MIB: lmMiscSensorsEntry ::= { lmMiscSensorsTable 1 }
Cannot adopt OID in NET-SNMP-MIB: netSnmpNotifications ::= { netSnmpNotificationPrefix 0 }
Cannot adopt OID in NET-SNMP-MIB: netSnmpNotificationObjects ::= { netSnmpNotificationPrefix 1 }
Cannot adopt OID in NET-SNMP-PASS-MIB: netSnmpPassString ::= { netSnmpPassExamples 1 }
Cannot adopt OID in NET-SNMP-PASS-MIB: netSnmpPassTimeTicks ::= { netSnmpPassExamples 3 }
Cannot adopt OID in NET-SNMP-PASS-MIB: netSnmpPassIpAddress ::= { netSnmpPassExamples 4 }
Cannot adopt OID in NET-SNMP-PASS-MIB: netSnmpPassCounter ::= { netSnmpPassExamples 5 }
Cannot adopt OID in NET-SNMP-PASS-MIB: netSnmpPassGauge ::= { netSnmpPassExamples 6 }
Cannot adopt OID in NET-SNMP-PASS-MIB: netSnmpPassCounter64 ::= { netSnmpPassExamples 7 }
Cannot adopt OID in NET-SNMP-PASS-MIB: netSnmpPassInteger64 ::= { netSnmpPassExamples 8 }
Cannot adopt OID in NET-SNMP-PASS-MIB: netSnmpPassOIDValue ::= { netSnmpPassExamples 99 }
Cannot adopt OID in NET-SNMP-PASS-MIB: netSnmpPassTable ::= { netSnmpPassExamples 2 }
Cannot adopt OID in NET-SNMP-MIB: netSnmpModuleIDs ::= { netSnmpEnumerations 1 }
Cannot adopt OID in NET-SNMP-MIB: netSnmpAgentOIDs ::= { netSnmpEnumerations 2 }
Cannot adopt OID in NET-SNMP-MIB: netSnmpDomains ::= { netSnmpEnumerations 3 }
Cannot adopt OID in LM-SENSORS-MIB: lmFanSensorsEntry ::= { lmFanSensorsTable 1 }
Cannot adopt OID in LM-SENSORS-MIB: lmTempSensorsEntry ::= { lmTempSensorsTable 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsAgentNotifyGroup ::= { netSnmpGroups 9 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsTransactionGroup ::= { netSnmpGroups 8 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsConfigGroups ::= { netSnmpGroups 7 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsCacheGroup ::= { netSnmpGroups 4 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsModuleGroup ::= { netSnmpGroups 2 }
Cannot adopt OID in UCD-SNMP-MIB: fileEntry ::= { fileTable 1 }
Cannot adopt OID in ADDER-AIM-MIB: notificationsGroup ::= { conformanceGroups 1 }
Cannot adopt OID in ADDER-AIM-MIB: objectsGroup ::= { conformanceGroups 2 }
Cannot adopt OID in NET-SNMP-VACM-MIB: nsVacmAuthType ::= { nsVacmAccessEntry 1 }
Cannot adopt OID in NET-SNMP-VACM-MIB: nsVacmContextMatch ::= { nsVacmAccessEntry 2 }
Cannot adopt OID in NET-SNMP-VACM-MIB: nsVacmViewName ::= { nsVacmAccessEntry 3 }
Cannot adopt OID in NET-SNMP-VACM-MIB: nsVacmStorageType ::= { nsVacmAccessEntry 4 }
Cannot adopt OID in NET-SNMP-VACM-MIB: nsVacmStatus ::= { nsVacmAccessEntry 5 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendGroups ::= { nsExtensions 3 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendObjects ::= { nsExtensions 2 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: netSnmpExtendMIB ::= { nsExtensions 1 }
Cannot adopt OID in LM-SENSORS-MIB: lmVoltSensorsEntry ::= { lmVoltSensorsTable 1 }
Cannot adopt OID in UCD-SNMP-MIB: ucdavis ::= { enterprises 2021 }
Cannot adopt OID in NET-SNMP-MIB: netSnmp ::= { enterprises 8072 }
Cannot adopt OID in ADDER-AIM-MIB: adderTechnology ::= { enterprises 25119 }
Cannot adopt OID in ADDER-AIM-MIB: anonymous#0 ::= { enterprises 25119 }
Cannot adopt OID in UCD-DISKIO-MIB: diskIOIndex ::= { diskIOEntry 1 }
Cannot adopt OID in UCD-DISKIO-MIB: diskIODevice ::= { diskIOEntry 2 }
Cannot adopt OID in UCD-DISKIO-MIB: diskIONRead ::= { diskIOEntry 3 }
Cannot adopt OID in UCD-DISKIO-MIB: diskIONWritten ::= { diskIOEntry 4 }
Cannot adopt OID in UCD-DISKIO-MIB: diskIOReads ::= { diskIOEntry 5 }
Cannot adopt OID in UCD-DISKIO-MIB: diskIOWrites ::= { diskIOEntry 6 }
Cannot adopt OID in UCD-DISKIO-MIB: diskIOLA1 ::= { diskIOEntry 9 }
Cannot adopt OID in UCD-DISKIO-MIB: diskIOLA5 ::= { diskIOEntry 10 }
Cannot adopt OID in UCD-DISKIO-MIB: diskIOLA15 ::= { diskIOEntry 11 }
Cannot adopt OID in UCD-DISKIO-MIB: diskIONReadX ::= { diskIOEntry 12 }
Cannot adopt OID in UCD-DISKIO-MIB: diskIONWrittenX ::= { diskIOEntry 13 }
Cannot adopt OID in UCD-DISKIO-MIB: diskIOBusyTime ::= { diskIOEntry 14 }
Cannot adopt OID in ADDER-AIM-MIB: serverCPULoad ::= { serverState 1 }
Cannot adopt OID in ADDER-AIM-MIB: serverMemoryUsage ::= { serverState 2 }
Cannot adopt OID in ADDER-AIM-MIB: serverSoftwareVersion ::= { serverState 3 }
Cannot adopt OID in ADDER-AIM-MIB: serverDiskSpace ::= { serverState 4 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsTransactionID ::= { nsTransactionEntry 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsTransactionMode ::= { nsTransactionEntry 2 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsDebugTokenPrefix ::= { nsDebugTokenEntry 2 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsDebugTokenStatus ::= { nsDebugTokenEntry 4 }
Cannot adopt OID in ADDER-AIM-MIB: adderlinkInfinityManager ::= { anonymous#0 1 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: nsIETFWGName ::= { netSnmpIETFWGEntry 1 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: nsIETFWGChair1 ::= { netSnmpIETFWGEntry 2 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: nsIETFWGChair2 ::= { netSnmpIETFWGEntry 3 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsLoggingTable ::= { nsConfigLogging 1 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpHostsEntry ::= { netSnmpHostsTable 1 }
Cannot adopt OID in UCD-DLMOD-MIB: dlmodIndex ::= { dlmodEntry 1 }
Cannot adopt OID in UCD-DLMOD-MIB: dlmodName ::= { dlmodEntry 2 }
Cannot adopt OID in UCD-DLMOD-MIB: dlmodPath ::= { dlmodEntry 3 }
Cannot adopt OID in UCD-DLMOD-MIB: dlmodError ::= { dlmodEntry 4 }
Cannot adopt OID in UCD-DLMOD-MIB: dlmodStatus ::= { dlmodEntry 5 }
Cannot adopt OID in NET-SNMP-TC: unknown ::= { netSnmpAgentOIDs 255 }
Cannot adopt OID in NET-SNMP-TC: dragonfly ::= { netSnmpAgentOIDs 17 }
Cannot adopt OID in NET-SNMP-TC: macosx ::= { netSnmpAgentOIDs 16 }
Cannot adopt OID in NET-SNMP-TC: aix ::= { netSnmpAgentOIDs 15 }
Cannot adopt OID in NET-SNMP-TC: hpux11 ::= { netSnmpAgentOIDs 14 }
Cannot adopt OID in NET-SNMP-TC: win32 ::= { netSnmpAgentOIDs 13 }
Cannot adopt OID in NET-SNMP-TC: openbsd ::= { netSnmpAgentOIDs 12 }
Cannot adopt OID in NET-SNMP-TC: bsdi ::= { netSnmpAgentOIDs 11 }
Cannot adopt OID in NET-SNMP-TC: linux ::= { netSnmpAgentOIDs 10 }
Cannot adopt OID in NET-SNMP-TC: irix ::= { netSnmpAgentOIDs 9 }
Cannot adopt OID in NET-SNMP-TC: freebsd ::= { netSnmpAgentOIDs 8 }
Cannot adopt OID in NET-SNMP-TC: netbsd ::= { netSnmpAgentOIDs 7 }
Cannot adopt OID in NET-SNMP-TC: hpux10 ::= { netSnmpAgentOIDs 6 }
Cannot adopt OID in NET-SNMP-TC: ultrix ::= { netSnmpAgentOIDs 5 }
Cannot adopt OID in NET-SNMP-TC: osf ::= { netSnmpAgentOIDs 4 }
Cannot adopt OID in NET-SNMP-TC: solaris ::= { netSnmpAgentOIDs 3 }
Cannot adopt OID in NET-SNMP-TC: sunos4 ::= { netSnmpAgentOIDs 2 }
Cannot adopt OID in NET-SNMP-TC: hpux9 ::= { netSnmpAgentOIDs 1 }
Cannot adopt OID in LM-SENSORS-MIB: lmMiscSensorsIndex ::= { lmMiscSensorsEntry 1 }
Cannot adopt OID in LM-SENSORS-MIB: lmMiscSensorsDevice ::= { lmMiscSensorsEntry 2 }
Cannot adopt OID in LM-SENSORS-MIB: lmMiscSensorsValue ::= { lmMiscSensorsEntry 3 }
Cannot adopt OID in NET-SNMP-PASS-MIB: netSnmpPassEntry ::= { netSnmpPassTable 1 }
Cannot adopt OID in UCD-SNMP-MIB: dskEntry ::= { dskTable 1 }
Cannot adopt OID in UCD-IPFWACC-MIB: ucdIpFwAccMIB ::= { ucdExperimental 1 }
Cannot adopt OID in UCD-DLMOD-MIB: ucdDlmodMIB ::= { ucdExperimental 14 }
Cannot adopt OID in UCD-DISKIO-MIB: ucdDiskIOMIB ::= { ucdExperimental 15 }
Cannot adopt OID in LM-SENSORS-MIB: lmSensors ::= { ucdExperimental 16 }
Cannot adopt OID in NET-SNMP-TC: netSnmpTCs ::= { netSnmpModuleIDs 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: netSnmpAgentMIB ::= { netSnmpModuleIDs 2 }
Cannot adopt OID in LM-SENSORS-MIB: lmFanSensorsIndex ::= { lmFanSensorsEntry 1 }
Cannot adopt OID in LM-SENSORS-MIB: lmFanSensorsDevice ::= { lmFanSensorsEntry 2 }
Cannot adopt OID in LM-SENSORS-MIB: lmFanSensorsValue ::= { lmFanSensorsEntry 3 }
Cannot adopt OID in LM-SENSORS-MIB: lmTempSensorsIndex ::= { lmTempSensorsEntry 1 }
Cannot adopt OID in LM-SENSORS-MIB: lmTempSensorsDevice ::= { lmTempSensorsEntry 2 }
Cannot adopt OID in LM-SENSORS-MIB: lmTempSensorsValue ::= { lmTempSensorsEntry 3 }
Cannot adopt OID in UCD-SNMP-MIB: logMatchMaxEntries ::= { logMatch 1 }
Cannot adopt OID in UCD-SNMP-MIB: logMatchTable ::= { logMatch 2 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsLoggingEntry ::= { nsLoggingTable 1 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccTable ::= { ucdIpFwAccMIB 1 }
Cannot adopt OID in UCD-SNMP-MIB: fileIndex ::= { fileEntry 1 }
Cannot adopt OID in UCD-SNMP-MIB: fileName ::= { fileEntry 2 }
Cannot adopt OID in UCD-SNMP-MIB: fileSize ::= { fileEntry 3 }
Cannot adopt OID in UCD-SNMP-MIB: fileMax ::= { fileEntry 4 }
Cannot adopt OID in UCD-SNMP-MIB: fileErrorFlag ::= { fileEntry 100 }
Cannot adopt OID in UCD-SNMP-MIB: fileErrorMsg ::= { fileEntry 101 }
Cannot adopt OID in ADDER-AIM-MIB: rxHead ::= { packetLossData 1 }
Cannot adopt OID in ADDER-AIM-MIB: packetsSent ::= { packetLossData 2 }
Cannot adopt OID in ADDER-AIM-MIB: packetsDropped ::= { packetLossData 3 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendOutput1Entry ::= { nsExtendOutput1Table 1 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendNumEntries ::= { nsExtendObjects 1 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendConfigTable ::= { nsExtendObjects 2 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendOutput1Table ::= { nsExtendObjects 3 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendOutput2Table ::= { nsExtendObjects 4 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendOutput2Entry ::= { nsExtendOutput2Table 1 }
Cannot adopt OID in UCD-SNMP-MIB: ssIndex ::= { systemStats 1 }
Cannot adopt OID in UCD-SNMP-MIB: ssErrorName ::= { systemStats 2 }
Cannot adopt OID in UCD-SNMP-MIB: ssSwapIn ::= { systemStats 3 }
Cannot adopt OID in UCD-SNMP-MIB: ssSwapOut ::= { systemStats 4 }
Cannot adopt OID in UCD-SNMP-MIB: ssIOSent ::= { systemStats 5 }
Cannot adopt OID in UCD-SNMP-MIB: ssIOReceive ::= { systemStats 6 }
Cannot adopt OID in UCD-SNMP-MIB: ssSysInterrupts ::= { systemStats 7 }
Cannot adopt OID in UCD-SNMP-MIB: ssSysContext ::= { systemStats 8 }
Cannot adopt OID in UCD-SNMP-MIB: ssCpuUser ::= { systemStats 9 }
Cannot adopt OID in UCD-SNMP-MIB: ssCpuSystem ::= { systemStats 10 }
Cannot adopt OID in UCD-SNMP-MIB: ssCpuIdle ::= { systemStats 11 }
Cannot adopt OID in UCD-SNMP-MIB: ssCpuRawUser ::= { systemStats 50 }
Cannot adopt OID in UCD-SNMP-MIB: ssCpuRawNice ::= { systemStats 51 }
Cannot adopt OID in UCD-SNMP-MIB: ssCpuRawSystem ::= { systemStats 52 }
Cannot adopt OID in UCD-SNMP-MIB: ssCpuRawIdle ::= { systemStats 53 }
Cannot adopt OID in UCD-SNMP-MIB: ssCpuRawWait ::= { systemStats 54 }
Cannot adopt OID in UCD-SNMP-MIB: ssCpuRawKernel ::= { systemStats 55 }
Cannot adopt OID in UCD-SNMP-MIB: ssCpuRawInterrupt ::= { systemStats 56 }
Cannot adopt OID in UCD-SNMP-MIB: ssIORawSent ::= { systemStats 57 }
Cannot adopt OID in UCD-SNMP-MIB: ssIORawReceived ::= { systemStats 58 }
Cannot adopt OID in UCD-SNMP-MIB: ssRawInterrupts ::= { systemStats 59 }
Cannot adopt OID in UCD-SNMP-MIB: ssRawContexts ::= { systemStats 60 }
Cannot adopt OID in UCD-SNMP-MIB: ssCpuRawSoftIRQ ::= { systemStats 61 }
Cannot adopt OID in UCD-SNMP-MIB: ssRawSwapIn ::= { systemStats 62 }
Cannot adopt OID in UCD-SNMP-MIB: ssRawSwapOut ::= { systemStats 63 }
Cannot adopt OID in UCD-SNMP-MIB: ssCpuRawSteal ::= { systemStats 64 }
Cannot adopt OID in UCD-SNMP-MIB: ssCpuRawGuest ::= { systemStats 65 }
Cannot adopt OID in UCD-SNMP-MIB: ssCpuRawGuestNice ::= { systemStats 66 }
Cannot adopt OID in UCD-SNMP-MIB: ssCpuNumCpus ::= { systemStats 67 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsCacheDefaultTimeout ::= { nsCache 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsCacheEnabled ::= { nsCache 2 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsCacheTable ::= { nsCache 3 }
Cannot adopt OID in UCD-SNMP-MIB: laEntry ::= { laTable 1 }
Cannot adopt OID in UCD-SNMP-MIB: logMatchEntry ::= { logMatchTable 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsConfigDebug ::= { nsConfiguration 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsConfigLogging ::= { nsConfiguration 2 }
Cannot adopt OID in UCD-SNMP-MIB: extEntry ::= { extTable 1 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpExampleInteger ::= { netSnmpExampleScalars 1 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpExampleSleeper ::= { netSnmpExampleScalars 2 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpExampleString ::= { netSnmpExampleScalars 3 }
Cannot adopt OID in LM-SENSORS-MIB: lmVoltSensorsIndex ::= { lmVoltSensorsEntry 1 }
Cannot adopt OID in LM-SENSORS-MIB: lmVoltSensorsDevice ::= { lmVoltSensorsEntry 2 }
Cannot adopt OID in LM-SENSORS-MIB: lmVoltSensorsValue ::= { lmVoltSensorsEntry 3 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsCacheEntry ::= { nsCacheTable 1 }
Cannot adopt OID in ADDER-AIM-MIB: deviceEthStatusChangedEv ::= { eventList 1 }
Cannot adopt OID in ADDER-AIM-MIB: packetLossEv ::= { eventList 2 }
Cannot adopt OID in ADDER-AIM-MIB: serverStatusChangedEv ::= { eventList 3 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsDebugEnabled ::= { nsConfigDebug 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsDebugOutputAll ::= { nsConfigDebug 2 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsDebugDumpPdu ::= { nsConfigDebug 3 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsDebugTokenTable ::= { nsConfigDebug 4 }
Cannot adopt OID in UCD-DEMO-MIB: ucdDemoResetKeys ::= { ucdDemoPublic 1 }
Cannot adopt OID in UCD-DEMO-MIB: ucdDemoPublicString ::= { ucdDemoPublic 2 }
Cannot adopt OID in UCD-DEMO-MIB: ucdDemoUserList ::= { ucdDemoPublic 3 }
Cannot adopt OID in UCD-DEMO-MIB: ucdDemoPassphrase ::= { ucdDemoPublic 4 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpExampleHeartbeatRate ::= { netSnmpExampleNotificationObjects 1 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpExampleHeartbeatName ::= { netSnmpExampleNotificationObjects 2 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpExampleScalars ::= { netSnmpExamples 1 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpExampleTables ::= { netSnmpExamples 2 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpExampleNotifications ::= { netSnmpExamples 3 }
Cannot adopt OID in NET-SNMP-VACM-MIB: nsVacmAccessTable ::= { netSnmpVacmMIB 1 }
Cannot adopt OID in NET-SNMP-PASS-MIB: netSnmpPassExamples ::= { netSnmpExamples 255 }
Cannot adopt OID in UCD-IPFWACC-MIB: ipFwAccEntry ::= { ipFwAccTable 1 }
Cannot adopt OID in LM-SENSORS-MIB: lmSensorsMIB ::= { lmSensors 1 }
Cannot adopt OID in LM-SENSORS-MIB: lmTempSensorsTable ::= { lmSensors 2 }
Cannot adopt OID in LM-SENSORS-MIB: lmFanSensorsTable ::= { lmSensors 3 }
Cannot adopt OID in LM-SENSORS-MIB: lmVoltSensorsTable ::= { lmSensors 4 }
Cannot adopt OID in LM-SENSORS-MIB: lmMiscSensorsTable ::= { lmSensors 5 }
Cannot adopt OID in UCD-SNMP-MIB: ucdStart ::= { ucdTraps 1 }
Cannot adopt OID in UCD-SNMP-MIB: ucdShutdown ::= { ucdTraps 2 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendConfigEntry ::= { nsExtendConfigTable 1 }
Cannot adopt OID in UCD-SNMP-MIB: mrEntry ::= { mrTable 1 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpHostName ::= { netSnmpHostsEntry 1 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpHostAddressType ::= { netSnmpHostsEntry 2 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpHostAddress ::= { netSnmpHostsEntry 3 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpHostStorage ::= { netSnmpHostsEntry 4 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpHostRowStatus ::= { netSnmpHostsEntry 5 }
Cannot adopt OID in ADDER-AIM-MIB: deviceIndex ::= { infinity 1 }
Cannot adopt OID in ADDER-AIM-MIB: deviceType ::= { infinity 2 }
Cannot adopt OID in ADDER-AIM-MIB: deviceFirmware ::= { infinity 3 }
Cannot adopt OID in ADDER-AIM-MIB: deviceName ::= { infinity 4 }
Cannot adopt OID in ADDER-AIM-MIB: deviceIdentifier ::= { infinity 5 }
Cannot adopt OID in ADDER-AIM-MIB: deviceIP1 ::= { infinity 6 }
Cannot adopt OID in ADDER-AIM-MIB: deviceMAC1 ::= { infinity 7 }
Cannot adopt OID in ADDER-AIM-MIB: deviceIP2 ::= { infinity 8 }
Cannot adopt OID in ADDER-AIM-MIB: deviceMAC2 ::= { infinity 9 }
Cannot adopt OID in ADDER-AIM-MIB: deviceSerialNum ::= { infinity 10 }
Cannot adopt OID in ADDER-AIM-MIB: deviceStatus ::= { infinity 20 }
Cannot adopt OID in ADDER-AIM-MIB: deviceLock ::= { infinity 21 }
Cannot adopt OID in ADDER-AIM-MIB: deviceEth1Status ::= { infinity 30 }
Cannot adopt OID in ADDER-AIM-MIB: deviceEth2Status ::= { infinity 40 }
Cannot adopt OID in UCD-SNMP-MIB: prEntry ::= { prTable 1 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpExampleNotificationPrefix ::= { netSnmpExampleNotifications 0 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpExampleNotificationObjects ::= { netSnmpExampleNotifications 2 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpExampleNotification ::= { netSnmpExampleNotifications 1 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpIETFWGTable ::= { netSnmpExampleTables 1 }
Cannot adopt OID in NET-SNMP-EXAMPLES-MIB: netSnmpHostsTable ::= { netSnmpExampleTables 2 }
Cannot adopt OID in NET-SNMP-PASS-MIB: netSnmpPassIndex ::= { netSnmpPassEntry 1 }
Cannot adopt OID in NET-SNMP-PASS-MIB: netSnmpPassInteger ::= { netSnmpPassEntry 2 }
Cannot adopt OID in NET-SNMP-PASS-MIB: netSnmpPassOID ::= { netSnmpPassEntry 3 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsModuleEntry ::= { nsModuleTable 1 }
Cannot adopt OID in UCD-SNMP-MIB: ucdInternal ::= { ucdavis 12 }
Cannot adopt OID in UCD-SNMP-MIB: ucdExperimental ::= { ucdavis 13 }
Cannot adopt OID in UCD-SNMP-MIB: ucdSnmpAgent ::= { ucdavis 250 }
Cannot adopt OID in UCD-SNMP-MIB: prTable ::= { ucdavis 2 }
Cannot adopt OID in UCD-SNMP-MIB: extTable ::= { ucdavis 8 }
Cannot adopt OID in UCD-SNMP-MIB: memory ::= { ucdavis 4 }
Cannot adopt OID in UCD-SNMP-MIB: dskTable ::= { ucdavis 9 }
Cannot adopt OID in UCD-SNMP-MIB: laTable ::= { ucdavis 10 }
Cannot adopt OID in UCD-SNMP-MIB: version ::= { ucdavis 100 }
Cannot adopt OID in UCD-SNMP-MIB: snmperrs ::= { ucdavis 101 }
Cannot adopt OID in UCD-SNMP-MIB: mrTable ::= { ucdavis 102 }
Cannot adopt OID in UCD-SNMP-MIB: systemStats ::= { ucdavis 11 }
Cannot adopt OID in UCD-SNMP-MIB: ucdTraps ::= { ucdavis 251 }
Cannot adopt OID in UCD-SNMP-MIB: fileTable ::= { ucdavis 15 }
Cannot adopt OID in UCD-SNMP-MIB: logMatch ::= { ucdavis 16 }
Cannot adopt OID in UCD-DEMO-MIB: ucdDemoMIB ::= { ucdavis 14 }
Cannot adopt OID in NET-SNMP-VACM-MIB: netSnmpVacmMIB ::= { netSnmpObjects 9 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsTransactions ::= { netSnmpObjects 8 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsConfiguration ::= { netSnmpObjects 7 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsErrorHistory ::= { netSnmpObjects 6 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsCache ::= { netSnmpObjects 5 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsDLMod ::= { netSnmpObjects 4 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsExtensions ::= { netSnmpObjects 3 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsMibRegistry ::= { netSnmpObjects 2 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsVersion ::= { netSnmpObjects 1 }
Cannot adopt OID in NET-SNMP-TC: netSnmpTLSTCPDomain ::= { netSnmpDomains 10 }
Cannot adopt OID in NET-SNMP-TC: netSnmpDTLSSCTPDomain ::= { netSnmpDomains 9 }
Cannot adopt OID in NET-SNMP-TC: netSnmpDTLSUDPDomain ::= { netSnmpDomains 8 }
Cannot adopt OID in NET-SNMP-TC: netSnmpAliasDomain ::= { netSnmpDomains 7 }
Cannot adopt OID in NET-SNMP-TC: netSnmpCallbackDomain ::= { netSnmpDomains 6 }
Cannot adopt OID in NET-SNMP-TC: netSnmpTCPIPv6Domain ::= { netSnmpDomains 5 }
Cannot adopt OID in NET-SNMP-TC: netSnmpUDPIPv6Domain ::= { netSnmpDomains 4 }
Cannot adopt OID in NET-SNMP-TC: netSnmpAAL5PVCDomain ::= { netSnmpDomains 3 }
Cannot adopt OID in NET-SNMP-TC: netSnmpUnixDomain ::= { netSnmpDomains 2 }
Cannot adopt OID in NET-SNMP-TC: netSnmpTCPDomain ::= { netSnmpDomains 1 }
Cannot adopt OID in ADDER-AIM-MIB: infinity ::= { infinityTable 1 }
Cannot adopt OID in ADDER-AIM-MIB: infinityTable ::= { adderlinkInfinityManager 1 }
Cannot adopt OID in ADDER-AIM-MIB: deviceNetwork ::= { adderlinkInfinityManager 2 }
Cannot adopt OID in ADDER-AIM-MIB: serverState ::= { adderlinkInfinityManager 3 }
Cannot adopt OID in ADDER-AIM-MIB: events ::= { adderlinkInfinityManager 4 }
Cannot adopt OID in ADDER-AIM-MIB: packetLossData ::= { adderlinkInfinityManager 5 }
Cannot adopt OID in ADDER-AIM-MIB: conformance ::= { adderlinkInfinityManager 6 }
Cannot adopt OID in ADDER-AIM-MIB: serverDetailsTable ::= { adderlinkInfinityManager 7 }
Cannot adopt OID in UCD-SNMP-MIB: dskIndex ::= { dskEntry 1 }
Cannot adopt OID in UCD-SNMP-MIB: dskPath ::= { dskEntry 2 }
Cannot adopt OID in UCD-SNMP-MIB: dskDevice ::= { dskEntry 3 }
Cannot adopt OID in UCD-SNMP-MIB: dskMinimum ::= { dskEntry 4 }
Cannot adopt OID in UCD-SNMP-MIB: dskMinPercent ::= { dskEntry 5 }
Cannot adopt OID in UCD-SNMP-MIB: dskTotal ::= { dskEntry 6 }
Cannot adopt OID in UCD-SNMP-MIB: dskAvail ::= { dskEntry 7 }
Cannot adopt OID in UCD-SNMP-MIB: dskUsed ::= { dskEntry 8 }
Cannot adopt OID in UCD-SNMP-MIB: dskPercent ::= { dskEntry 9 }
Cannot adopt OID in UCD-SNMP-MIB: dskPercentNode ::= { dskEntry 10 }
Cannot adopt OID in UCD-SNMP-MIB: dskTotalLow ::= { dskEntry 11 }
Cannot adopt OID in UCD-SNMP-MIB: dskTotalHigh ::= { dskEntry 12 }
Cannot adopt OID in UCD-SNMP-MIB: dskAvailLow ::= { dskEntry 13 }
Cannot adopt OID in UCD-SNMP-MIB: dskAvailHigh ::= { dskEntry 14 }
Cannot adopt OID in UCD-SNMP-MIB: dskUsedLow ::= { dskEntry 15 }
Cannot adopt OID in UCD-SNMP-MIB: dskUsedHigh ::= { dskEntry 16 }
Cannot adopt OID in UCD-SNMP-MIB: dskErrorFlag ::= { dskEntry 100 }
Cannot adopt OID in UCD-SNMP-MIB: dskErrorMsg ::= { dskEntry 101 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsDebugGroup ::= { nsConfigGroups 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsLoggingGroup ::= { nsConfigGroups 2 }
Cannot adopt OID in UCD-DISKIO-MIB: diskIOTable ::= { ucdDiskIOMIB 1 }
Cannot adopt OID in ADDER-AIM-MIB: numRx ::= { deviceNetwork 1 }
Cannot adopt OID in ADDER-AIM-MIB: numTx ::= { deviceNetwork 2 }
Cannot adopt OID in ADDER-AIM-MIB: numActiveConnexions ::= { deviceNetwork 3 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsLogLevel ::= { nsLoggingEntry 1 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsLogToken ::= { nsLoggingEntry 2 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsLogType ::= { nsLoggingEntry 3 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsLogMaxLevel ::= { nsLoggingEntry 4 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsLogStatus ::= { nsLoggingEntry 5 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsTransactionTable ::= { nsTransactions 1 }
Cannot adopt OID in UCD-SNMP-MIB: snmperrIndex ::= { snmperrs 1 }
Cannot adopt OID in UCD-SNMP-MIB: snmperrNames ::= { snmperrs 2 }
Cannot adopt OID in UCD-SNMP-MIB: snmperrErrorFlag ::= { snmperrs 100 }
Cannot adopt OID in UCD-SNMP-MIB: snmperrErrMessage ::= { snmperrs 101 }
Cannot adopt OID in ADDER-AIM-MIB: serverId ::= { serverDetails 1 }
Cannot adopt OID in ADDER-AIM-MIB: serverName ::= { serverDetails 2 }
Cannot adopt OID in ADDER-AIM-MIB: serverRole ::= { serverDetails 3 }
Cannot adopt OID in ADDER-AIM-MIB: serverStatus ::= { serverDetails 4 }
Cannot adopt OID in ADDER-AIM-MIB: serverIP1 ::= { serverDetails 5 }
Cannot adopt OID in ADDER-AIM-MIB: serverMAC1 ::= { serverDetails 6 }
Cannot adopt OID in ADDER-AIM-MIB: serverEth1Enabled ::= { serverDetails 7 }
Cannot adopt OID in ADDER-AIM-MIB: serverIP2 ::= { serverDetails 8 }
Cannot adopt OID in ADDER-AIM-MIB: serverMAC2 ::= { serverDetails 9 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendOutput1Line ::= { nsExtendOutput1Entry 1 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendOutputFull ::= { nsExtendOutput1Entry 2 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendOutNumLines ::= { nsExtendOutput1Entry 3 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendResult ::= { nsExtendOutput1Entry 4 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendLineIndex ::= { nsExtendOutput2Entry 1 }
Cannot adopt OID in NET-SNMP-EXTEND-MIB: nsExtendOutLine ::= { nsExtendOutput2Entry 2 }
Cannot adopt OID in UCD-SNMP-MIB: laIndex ::= { laEntry 1 }
Cannot adopt OID in UCD-SNMP-MIB: laNames ::= { laEntry 2 }
Cannot adopt OID in UCD-SNMP-MIB: laLoad ::= { laEntry 3 }
Cannot adopt OID in UCD-SNMP-MIB: laConfig ::= { laEntry 4 }
Cannot adopt OID in UCD-SNMP-MIB: laLoadInt ::= { laEntry 5 }
Cannot adopt OID in UCD-SNMP-MIB: laLoadFloat ::= { laEntry 6 }
Cannot adopt OID in UCD-SNMP-MIB: laErrorFlag ::= { laEntry 100 }
Cannot adopt OID in UCD-SNMP-MIB: laErrMessage ::= { laEntry 101 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsNotifyRestart ::= { netSnmpNotifications 3 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsNotifyShutdown ::= { netSnmpNotifications 2 }
Cannot adopt OID in NET-SNMP-AGENT-MIB: nsNotifyStart ::= { netSnmpNotifications 1 }
dswarbrick commented 1 year ago

@llamafilm Follow the instructions in /usr/share/doc/prometheus-snmp-exporter/README.Debian:

prometheus-snmp-exporter for Debian
-----------------------------------

Due to licensing reasons, it is not possible to ship a ready-to-use snmp.yml
config file with this package.

See generator/README.md for instructions on how to obtain SNMP MIBs and
generate a suitable snmp.yml config.

Most vendor MIBs will require the basic set of IANA & IETF MIBs to be present
on the system. You can download these using the snmp-mibs-downloader:

1. Activate the non-free repository in your APT sources.
2. Install the snmp-mibs-downloader package.

Upon installation of the package, it should automatically download a number of
MIBs. You can refresh these at any time by executing the "download-mibs"
command as root (or via sudo).

The generator will search for MIBs in a variety of directories, including
/usr/share/snmp/mibs, where the snmp-mibs-downloader will install them.

I highly recommend stripping back the generator.yml to just the bare minimum modules that are relevant to your environment before you generate your snmp.yml from it.

You may also need to adjust your /etc/snmp/snmp.conf if you have MIBs in non-standard locations.

llamafilm commented 1 year ago

Thank you, that explains it! I tried man prometheus-snmp-generator but did not know to look here.

tom-i commented 1 year ago

I'm facing same problem, I need snmp v3 for proper snmp_exporter walk through some network devices. So only way is to wait till 0.23 snmp_exporter will be released. Is there any schedule plan of this?

SuperQ commented 1 year ago

v0.23.0 has a release candidate available on the releases page.

tom-i commented 1 year ago

How should I specify more auths in one generator.yml file? Actually on 0.23.0-rc.1 I have generator.yml like:

auths:
  auth_cisco:
    version: 2
    community: BLABLA
  auth_checkpoint:
    version: 2
    community: BLABLA2
  auth_viptela:
    version: 3
    username: BLABLA3
    security_level: authPriv
    password: BLABLA4
    auth_protocol: SHA 
    priv_protocol: AES
    priv_password: BLABLA5
    context_name: context
modules:
...

When I generate snmp.yml and copy it to snmp_exporter and run it, when I execute snmp_exporter in web page, it shows me message: Unknown auth 'public_v2' So it means, that I have to use just specific names for auths block? Like public_v1, public_v2 and public_v3?

tom-i commented 1 year ago

I've tried to manage it by myself, and it looks, that more auths method is not possible. Especially v2 and v3 together. TEST1:

auths:
  public_v2:
    version: 2
    community: BLABLA1
  public_v2:
    version: 2
    community: BLABLA2

result: not possible Two same public_v2 names

TEST2: v2 + v3

auths:
  public_v2:
    version: 2
    community: BLABLA2
  public_v3:
    version: 3
    username: BLABLA3
    security_level: authPriv
    password: BLABLA4
    auth_protocol: SHA 
    priv_protocol: AES
    priv_password: BLABLA5
    context_name: context

result: snmp_exporter uses auth=public_v2 why?? caller=collector.go:218 level=debug auth=public_v2 module=viptela_mib target=10.128.XX.XXX msg="Walking subtree" oid=1.3.6.1.4.1.41916.3

dswarbrick commented 1 year ago

I need snmp v3 for proper snmp_exporter walk through some network devices. So only way is to wait till 0.23 snmp_exporter will be released.

@tom-i SNMPv3 has been supported by snmp_exporter since v0.0.6.

SuperQ commented 1 year ago

result: snmp_exporter uses auth=public_v2 why??

Because you did not specify which auth to use on the request.