Bug #7477
closedLog data does not match documented schema
0%
Description
RE: https://doc.pfsense.org/index.php/Filter_Log_Format_for_pfSense_2.2
For example:
sequence-number="2855194778:2855195413"
2017-03-19T09:00:15-04:00 fw1srvp01 filterlog: 9,16777216,,1000000103,lagg0_vlan5,match,block,in,4,0x0,,64,37427,0,DF,6,tcp,687,192.168.2.16,172.217.11.40,54791,443,635,PA,2855194778:2855195413,1862930181,291,,nop;nop;TS
does not validate against:
<sequence-number> ::= <integer> -- TCP Sequence ID
which I have defined as:
<xs:simpleType name="tcp-sequence-number">
<xs:annotation>
<xs:documentation>TCP Sequence ID</xs:documentation>
</xs:annotation>
<xs:restriction base="xs:unsignedInt">
<xs:minInclusive value="0"/>
<xs:maxInclusive value="4294967295"/>
</xs:restriction>
</xs:simpleType>
I'm guessing that complex type was intentional, but the documented schema does not reflect what's being generated.