RFC Errata
RFC 5345, "Simple Network Management Protocol (SNMP) Traffic Measurements and Trace Exchange Formats", October 2008
Source of RFC: IRTFSee Also: RFC 5345 w/ inline errata
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.