Compilation problem in ipoib-ibif-mib-05
"Randy Presuhn" <[email protected]>
| Newsgroups | gmane.ietf.ipoib |
|---|---|
| Message-ID | <001601c38c3a$bb2d3600$7f1afea9@oemcomputer> |
Hi - First thing I checked in http://www.ietf.org/internet-drafts/draft-ietf-ipoib-ibif-mib-05.txt was to see whether it would compile using the handy [email protected] tool. It didn't like this definition: ibIpoibLinkLayerIndex OBJECT-TYPE SYNTAX INTEGER(1..65535) MAX-ACCESS not-accessible STATUS current DESCRIPTION "Index of the IPOIB Link Layer address in the table." ::= { ibIpoibLinkLayerAddrEntry 2 } Fix: replace "INTEGER" here with "Integer32" (or Unsigned32) Update the SEQUENCE accordingly, and include it in the IMPORTS. (I'm assuming the 65535 is a architectural limit of the ipoib protocol. If it isn't, then more work is needed here.) Randy