Merge tag 'ext4_for_linus-6.7-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git...
[linux-block.git] / Documentation / networking / netconsole.rst
CommitLineData
d9d6ef25
MCC
1.. SPDX-License-Identifier: GPL-2.0
2
3==========
4Netconsole
5==========
6
1da177e4
LT
7
8started by Ingo Molnar <mingo@redhat.com>, 2001.09.17
d9d6ef25 9
1da177e4 102.6 port and netpoll api by Matt Mackall <mpm@selenic.com>, Sep 9 2003
d9d6ef25 11
7265a6bb 12IPv6 support by Cong Wang <xiyou.wangcong@gmail.com>, Jan 1 2013
d9d6ef25 13
e2f15f9a 14Extended console support by Tejun Heo <tj@kernel.org>, May 1 2015
1da177e4 15
c62c0a17
BL
16Release prepend support by Breno Leitao <leitao@debian.org>, Jul 7 2023
17
1da177e4 18Please send bug reports to Matt Mackall <mpm@selenic.com>
7265a6bb 19Satyam Sharma <satyam.sharma@gmail.com>, and Cong Wang <xiyou.wangcong@gmail.com>
0bcc1816
SS
20
21Introduction:
22=============
1da177e4
LT
23
24This module logs kernel printk messages over UDP allowing debugging of
25problem where disk logging fails and serial consoles are impractical.
26
27It can be used either built-in or as a module. As a built-in,
28netconsole initializes immediately after NIC cards and will bring up
29the specified interface as soon as possible. While this doesn't allow
30capture of early kernel panics, it does capture most of the boot
31process.
32
0bcc1816
SS
33Sender and receiver configuration:
34==================================
35
1da177e4 36It takes a string configuration parameter "netconsole" in the
d9d6ef25 37following format::
1da177e4 38
c62c0a17 39 netconsole=[+][r][src-port]@[src-ip]/[<dev>],[tgt-port]@<tgt-ip>/[tgt-macaddr]
1da177e4
LT
40
41 where
d9d6ef25 42 + if present, enable extended console support
c62c0a17 43 r if present, prepend kernel version (release) to the message
d9d6ef25
MCC
44 src-port source for UDP packets (defaults to 6665)
45 src-ip source IP to use (interface address)
46 dev network interface (eth0)
47 tgt-port port for logging agent (6666)
48 tgt-ip IP address for logging agent
49 tgt-macaddr ethernet MAC address for logging agent (broadcast)
1da177e4 50
d9d6ef25 51Examples::
1da177e4
LT
52
53 linux netconsole=4444@10.0.0.1/eth1,9353@10.0.0.2/12:34:56:78:9a:bc
54
d9d6ef25 55or::
1da177e4
LT
56
57 insmod netconsole netconsole=@/,@10.0.0.2/
58
d9d6ef25 59or using IPv6::
7265a6bb
CW
60
61 insmod netconsole netconsole=@/,@fd00:1:2:3::1/
62
b5427c27
SS
63It also supports logging to multiple remote agents by specifying
64parameters for the multiple agents separated by semicolons and the
d9d6ef25 65complete string enclosed in "quotes", thusly::
b5427c27
SS
66
67 modprobe netconsole netconsole="@/,@10.0.0.2/;@/eth1,6892@10.0.0.3/"
68
1da177e4
LT
69Built-in netconsole starts immediately after the TCP stack is
70initialized and attempts to bring up the supplied dev at the supplied
71address.
72
6556bfde
DG
73The remote host has several options to receive the kernel messages,
74for example:
75
761) syslogd
77
782) netcat
79
80 On distributions using a BSD-based netcat version (e.g. Fedora,
81 openSUSE and Ubuntu) the listening port must be specified without
d9d6ef25
MCC
82 the -p switch::
83
84 nc -u -l -p <port>' / 'nc -u -l <port>
85
86 or::
6556bfde 87
d9d6ef25 88 netcat -u -l -p <port>' / 'netcat -u -l <port>
6556bfde
DG
89
903) socat
91
d9d6ef25
MCC
92::
93
94 socat udp-recv:<port> -
1da177e4 95
0bcc1816
SS
96Dynamic reconfiguration:
97========================
98
99Dynamic reconfigurability is a useful addition to netconsole that enables
100remote logging targets to be dynamically added, removed, or have their
101parameters reconfigured at runtime from a configfs-based userspace interface.
0bcc1816
SS
102
103To include this feature, select CONFIG_NETCONSOLE_DYNAMIC when building the
104netconsole module (or kernel, if netconsole is built-in).
105
106Some examples follow (where configfs is mounted at the /sys/kernel/config
107mountpoint).
108
d9d6ef25 109To add a remote logging target (target names can be arbitrary)::
0bcc1816
SS
110
111 cd /sys/kernel/config/netconsole/
112 mkdir target1
113
114Note that newly created targets have default parameter values (as mentioned
115above) and are disabled by default -- they must first be enabled by writing
116"1" to the "enabled" attribute (usually after setting parameters accordingly)
117as described below.
118
d9d6ef25 119To remove a target::
0bcc1816
SS
120
121 rmdir /sys/kernel/config/netconsole/othertarget/
122
123The interface exposes these parameters of a netconsole target to userspace:
124
d9d6ef25 125 ============== ================================= ============
0bcc1816 126 enabled Is this target currently enabled? (read-write)
e2f15f9a 127 extended Extended mode enabled (read-write)
c62c0a17 128 release Prepend kernel release to message (read-write)
0bcc1816
SS
129 dev_name Local network interface name (read-write)
130 local_port Source UDP port to use (read-write)
131 remote_port Remote agent's UDP port (read-write)
132 local_ip Source IP address to use (read-write)
133 remote_ip Remote agent's IP address (read-write)
134 local_mac Local interface's MAC address (read-only)
135 remote_mac Remote agent's MAC address (read-write)
d9d6ef25 136 ============== ================================= ============
0bcc1816
SS
137
138The "enabled" attribute is also used to control whether the parameters of
139a target can be updated or not -- you can modify the parameters of only
140disabled targets (i.e. if "enabled" is 0).
141
d9d6ef25 142To update a target's parameters::
0bcc1816
SS
143
144 cat enabled # check if enabled is 1
145 echo 0 > enabled # disable the target (if required)
146 echo eth2 > dev_name # set local interface
147 echo 10.0.0.4 > remote_ip # update some parameter
148 echo cb:a9:87:65:43:21 > remote_mac # update more parameters
149 echo 1 > enabled # enable target again
150
151You can also update the local interface dynamically. This is especially
152useful if you want to use interfaces that have newly come up (and may not
153have existed when netconsole was loaded / initialized).
154
7eeb84d8
BL
155Netconsole targets defined at boot time (or module load time) with the
156`netconsole=` param are assigned the name `cmdline<index>`. For example, the
157first target in the parameter is named `cmdline0`. You can control and modify
158these targets by creating configfs directories with the matching name.
159
160Let's suppose you have two netconsole targets defined at boot time::
161
162 netconsole=4444@10.0.0.1/eth1,9353@10.0.0.2/12:34:56:78:9a:bc;4444@10.0.0.1/eth1,9353@10.0.0.3/12:34:56:78:9a:bc
163
164You can modify these targets in runtime by creating the following targets::
165
166 mkdir cmdline0
167 cat cmdline0/remote_ip
168 10.0.0.2
169
170 mkdir cmdline1
171 cat cmdline1/remote_ip
172 10.0.0.3
173
e2f15f9a
TH
174Extended console:
175=================
176
177If '+' is prefixed to the configuration line or "extended" config file
178is set to 1, extended console support is enabled. An example boot
d9d6ef25 179param follows::
e2f15f9a
TH
180
181 linux netconsole=+4444@10.0.0.1/eth1,9353@10.0.0.2/12:34:56:78:9a:bc
182
183Log messages are transmitted with extended metadata header in the
d9d6ef25 184following format which is the same as /dev/kmsg::
e2f15f9a
TH
185
186 <level>,<sequnum>,<timestamp>,<contflag>;<message text>
187
c62c0a17
BL
188If 'r' (release) feature is enabled, the kernel release version is
189prepended to the start of the message. Example::
190
191 6.4.0,6,444,501151268,-;netconsole: network logging started
192
e2f15f9a
TH
193Non printable characters in <message text> are escaped using "\xff"
194notation. If the message contains optional dictionary, verbatim
a266ef69 195newline is used as the delimiter.
e2f15f9a
TH
196
197If a message doesn't fit in certain number of bytes (currently 1000),
198the message is split into multiple fragments by netconsole. These
d9d6ef25 199fragments are transmitted with "ncfrag" header field added::
e2f15f9a
TH
200
201 ncfrag=<byte-offset>/<total-bytes>
202
203For example, assuming a lot smaller chunk size, a message "the first
d9d6ef25 204chunk, the 2nd chunk." may be split as follows::
e2f15f9a
TH
205
206 6,416,1758426,-,ncfrag=0/31;the first chunk,
207 6,416,1758426,-,ncfrag=16/31; the 2nd chunk.
208
0bcc1816
SS
209Miscellaneous notes:
210====================
211
d9d6ef25
MCC
212.. Warning::
213
214 the default target ethernet setting uses the broadcast
215 ethernet address to send packets, which can cause increased load on
216 other systems on the same ethernet segment.
217
218.. Tip::
219
220 some LAN switches may be configured to suppress ethernet broadcasts
221 so it is advised to explicitly specify the remote agents' MAC addresses
222 from the config parameters passed to netconsole.
223
224.. Tip::
225
226 to find out the MAC address of, say, 10.0.0.2, you may try using::
227
228 ping -c 1 10.0.0.2 ; /sbin/arp -n | grep 10.0.0.2
1da177e4 229
d9d6ef25 230.. Tip::
8d4ef88b 231
d9d6ef25
MCC
232 in case the remote logging agent is on a separate LAN subnet than
233 the sender, it is suggested to try specifying the MAC address of the
234 default gateway (you may use /sbin/route -n to find it out) as the
235 remote MAC address instead.
8d4ef88b 236
d9d6ef25 237.. note::
8d4ef88b 238
d9d6ef25
MCC
239 the network device (eth1 in the above case) can run any kind
240 of other network traffic, netconsole is not intrusive. Netconsole
241 might cause slight delays in other traffic if the volume of kernel
242 messages is high, but should have no other impact.
8d4ef88b 243
d9d6ef25 244.. note::
1da177e4 245
d9d6ef25
MCC
246 if you find that the remote logging agent is not receiving or
247 printing all messages from the sender, it is likely that you have set
248 the "console_loglevel" parameter (on the sender) to only send high
249 priority messages to the console. You can change this at runtime using::
8d4ef88b 250
d9d6ef25 251 dmesg -n 8
8d4ef88b 252
d9d6ef25
MCC
253 or by specifying "debug" on the kernel command line at boot, to send
254 all kernel messages to the console. A specific value for this parameter
255 can also be set using the "loglevel" kernel boot option. See the
256 dmesg(8) man page and Documentation/admin-guide/kernel-parameters.rst
257 for details.
8d4ef88b 258
1da177e4
LT
259Netconsole was designed to be as instantaneous as possible, to
260enable the logging of even the most critical kernel bugs. It works
261from IRQ contexts as well, and does not enable interrupts while
84eb8d06 262sending packets. Due to these unique needs, configuration cannot
1da177e4
LT
263be more automatic, and some fundamental limitations will remain:
264only IP networks, UDP packets and ethernet devices are supported.