RFC Errata
RFC 6728, "Configuration Data Model for the IP Flow Information Export (IPFIX) and Packet Sampling (PSAMP) Protocols", October 2012
Source of RFC: ipfix (ops)See Also: RFC 6728 w/ inline errata
Errata ID: 4909
Status: Verified
Type: Technical
Publication Format(s) : TEXT
Reported By: Pavol Vican
Date Reported: 2017-01-16
Verifier Name: Benoit Claise
Date Verified: 2017-01-18
Section 6 says:
pattern "\S+"; ... pattern "\S(.*\S)?";
It should say:
pattern '\S+'; ... pattern '\S(.*\S)?';
Notes:
RFC 7950 in section 6.1.3 says that backslash has special meaning if it is in the double-quoted string. The only characters immediately following the backslash are n, t, \, ". Other characters are forbidden. This can be solved using single-quoted string or double backslash.