Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/freebsd/freebsd-src.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitchell Horne <mhorne@FreeBSD.org>2022-11-11 21:20:58 +0300
committerMitchell Horne <mhorne@FreeBSD.org>2022-11-11 21:25:38 +0300
commitb0832b5074840bce6f52842888b8c5279528fefa (patch)
tree100514de83ca64e6d040bf41eeed8162297a0bc1
parentd5f3e80f5a0b64ccde9ab6856766fc565e795393 (diff)
netdump(4): document all kernel options required
This means INET and DEBUGNET in addition to NETDUMP. Reviewed by: pauamma, markj MFC after: 3 days Differential Revision: https://reviews.freebsd.org/D37331
-rw-r--r--share/man/man4/netdump.46
1 files changed, 4 insertions, 2 deletions
diff --git a/share/man/man4/netdump.4 b/share/man/man4/netdump.4
index a6150eb758e3..ba39452c7076 100644
--- a/share/man/man4/netdump.4
+++ b/share/man/man4/netdump.4
@@ -24,16 +24,18 @@
.\"
.\" $FreeBSD$
.\"
-.Dd August 25, 2020
+.Dd November 10, 2022
.Dt NETDUMP 4
.Os
.Sh NAME
.Nm netdump
.Nd protocol for transmitting kernel dumps to a remote server
.Sh SYNOPSIS
-To compile netdump client support into the kernel, place the following line in
+To compile netdump client support into the kernel, place the following lines in
your kernel configuration file:
.Bd -ragged -offset indent
+.Cd "options INET"
+.Cd "options DEBUGNET"
.Cd "options NETDUMP"
.Ed
.Sh DESCRIPTION