Page Menu
Home
FreeBSD
Search
Configure Global Search
Log In
Files
F144509889
D21619.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
D21619.diff
View Options
Index: head/share/man/man4/siftr.4
===================================================================
--- head/share/man/man4/siftr.4
+++ head/share/man/man4/siftr.4
@@ -30,7 +30,7 @@
.\"
.\" $FreeBSD$
.\"
-.Dd March 18, 2015
+.Dd October 7, 2019
.Dt SIFTR 4
.Os
.Sh NAME
@@ -130,6 +130,14 @@
The hashes are useful to correlate which TCP packet triggered the generation of
a particular log message, but calculating them adds additional computational
overhead into the fast path.
+.El
+.Bl -tag -offset indent -width Va
+.It Va net.inet.siftr.port_filter
+controls on which source or destination port siftr should capture
+.Nm .
+By default, the value is set to 0, which means all ports are eligible for logging.
+Set to any other value, only packets where either the source or destination
+port is equal to this number are logged.
.El
.Ss Log Format
A typical
Index: head/sys/netinet/siftr.c
===================================================================
--- head/sys/netinet/siftr.c
+++ head/sys/netinet/siftr.c
@@ -918,7 +918,7 @@
* Only pkts selected by the tcp port filter
* can be inserted into the pkt_queue
*/
- if ((siftr_port_filter != 0) &&
+ if ((siftr_port_filter != 0) &&
(siftr_port_filter != ntohs(inp->inp_lport)) &&
(siftr_port_filter != ntohs(inp->inp_fport))) {
goto inp_unlock;
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Feb 10, 12:23 AM (4 h, 55 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
28608200
Default Alt Text
D21619.diff (1 KB)
Attached To
Mode
D21619: Update SIFTR man page, and minor trailing whitespace nit.
Attached
Detach File
Event Timeline
Log In to Comment