RFC Errata
Found 2 records.
Status: Verified (2)
RFC 5345, "Simple Network Management Protocol (SNMP) Traffic Measurements and Trace Exchange Formats", October 2008
Source of RFC: IRTF
Errata ID: 1580
Status: Verified
Type: Technical
Publication Format(s) : TEXT
Reported By: Alfred Hoenes
Date Reported: 2008-10-30
Verifier Name: Juergen Schoenwaelder
Date Verified: 2009-11-09
Section 3.8, para #2 says:
Depending on the data recorded in a trace, it might be possible to determine the age of devices by looking at the values of objects such | as sysObjectID and sysDecr [RFC3418]. [...]
It should say:
Depending on the data recorded in a trace, it might be possible to determine the age of devices by looking at the values of objects such | as sysObjectID and sysDescr [RFC3418]. [...] ^
Notes:
See RFC 3418.
Errata ID: 1581
Status: Verified
Type: Technical
Publication Format(s) : TEXT
Reported By: Alfred Hoenes
Date Reported: 2008-10-30
Verifier Name: Juergen Schoenwaelder
Date Verified: 2009-11-09
Section 4.1, pg.15 says:
oid.type = xsd:string { pattern = | "(([0-1](\.[1-3]?[0-9]))|(2.(0|([1-9]\d*))))" ~ "(\.(0|([1-9]\d*))){0,126}" }
It should say:
oid.type = xsd:string { pattern = | "(([0-1](\.[1-3]?[0-9]))|(2\.(0|([1-9]\d*))))" ~ "(\.(0|([1-9]\d*))){0,126}" }
Notes:
Missing backslash disturbs the pattern;
"\." is needed to make the dot literal.