2020-04-30 09:04:02 -07:00
|
|
|
.. SPDX-License-Identifier: GPL-2.0
|
|
|
|
|
|
|
|
==========
|
|
|
|
Netconsole
|
|
|
|
==========
|
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
started by Ingo Molnar <mingo@redhat.com>, 2001.09.17
|
2020-04-30 09:04:02 -07:00
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
2.6 port and netpoll api by Matt Mackall <mpm@selenic.com>, Sep 9 2003
|
2020-04-30 09:04:02 -07:00
|
|
|
|
2013-01-07 13:52:42 -07:00
|
|
|
IPv6 support by Cong Wang <xiyou.wangcong@gmail.com>, Jan 1 2013
|
2020-04-30 09:04:02 -07:00
|
|
|
|
2015-06-25 15:01:41 -07:00
|
|
|
Extended console support by Tejun Heo <tj@kernel.org>, May 1 2015
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2023-07-14 04:13:29 -07:00
|
|
|
Release prepend support by Breno Leitao <leitao@debian.org>, Jul 7 2023
|
|
|
|
|
2024-02-04 16:27:35 -07:00
|
|
|
Userdata append support by Matthew Wood <thepacketgeek@gmail.com>, Jan 22 2024
|
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
Please send bug reports to Matt Mackall <mpm@selenic.com>
|
2013-01-07 13:52:42 -07:00
|
|
|
Satyam Sharma <satyam.sharma@gmail.com>, and Cong Wang <xiyou.wangcong@gmail.com>
|
[NET] netconsole: Support dynamic reconfiguration using configfs
Based upon initial work by Keiichi Kii <k-keiichi@bx.jp.nec.com>.
This patch introduces support for dynamic reconfiguration (adding, removing
and/or modifying parameters of netconsole targets at runtime) using a
userspace interface exported via configfs. Documentation is also updated
accordingly.
Issues and brief design overview:
(1) Kernel-initiated creation / destruction of kernel objects is not
possible with configfs -- the lifetimes of the "config items" is managed
exclusively from userspace. But netconsole must support boot/module
params too, and these are parsed in kernel and hence netpolls must be
setup from the kernel. Joel Becker suggested to separately manage the
lifetimes of the two kinds of netconsole_target objects -- those created
via configfs mkdir(2) from userspace and those specified from the
boot/module option string. This adds complexity and some redundancy here
and also means that boot/module param-created targets are not exposed
through the configfs namespace (and hence cannot be updated / destroyed
dynamically). However, this saves us from locking / refcounting
complexities that would need to be introduced in configfs to support
kernel-initiated item creation / destroy there.
(2) In configfs, item creation takes place in the call chain of the
mkdir(2) syscall in the driver subsystem. If we used an ioctl(2) to
create / destroy objects from userspace, the special userspace program is
able to fill out the structure to be passed into the ioctl and hence
specify attributes such as local interface that are required at the time
we set up the netpoll. For configfs, this information is not available at
the time of mkdir(2). So, we keep all newly-created targets (via
configfs) disabled by default. The user is expected to set various
attributes appropriately (including the local network interface if
required) and then write(2) "1" to the "enabled" attribute. Thus,
netpoll_setup() is then called on the set parameters in the context of
_this_ write(2) on the "enabled" attribute itself. This design enables
the user to reconfigure existing netconsole targets at runtime to be
attached to newly-come-up interfaces that may not have existed when
netconsole was loaded or when the targets were actually created. All this
effectively enables us to get rid of custom ioctls.
(3) Ultra-paranoid configfs attribute show() and store() operations, with
sanity and input range checking, using only safe string primitives, and
compliant with the recommendations in Documentation/filesystems/sysfs.txt.
(4) A new function netpoll_print_options() is created in the netpoll API,
that just prints out the configured parameters for a netpoll structure.
netpoll_parse_options() is modified to use that and it is also exported to
be used from netconsole.
Signed-off-by: Satyam Sharma <satyam@infradead.org>
Acked-by: Keiichi Kii <k-keiichi@bx.jp.nec.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2007-08-10 15:35:05 -07:00
|
|
|
|
|
|
|
Introduction:
|
|
|
|
=============
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
This module logs kernel printk messages over UDP allowing debugging of
|
|
|
|
problem where disk logging fails and serial consoles are impractical.
|
|
|
|
|
|
|
|
It can be used either built-in or as a module. As a built-in,
|
|
|
|
netconsole initializes immediately after NIC cards and will bring up
|
|
|
|
the specified interface as soon as possible. While this doesn't allow
|
|
|
|
capture of early kernel panics, it does capture most of the boot
|
|
|
|
process.
|
|
|
|
|
[NET] netconsole: Support dynamic reconfiguration using configfs
Based upon initial work by Keiichi Kii <k-keiichi@bx.jp.nec.com>.
This patch introduces support for dynamic reconfiguration (adding, removing
and/or modifying parameters of netconsole targets at runtime) using a
userspace interface exported via configfs. Documentation is also updated
accordingly.
Issues and brief design overview:
(1) Kernel-initiated creation / destruction of kernel objects is not
possible with configfs -- the lifetimes of the "config items" is managed
exclusively from userspace. But netconsole must support boot/module
params too, and these are parsed in kernel and hence netpolls must be
setup from the kernel. Joel Becker suggested to separately manage the
lifetimes of the two kinds of netconsole_target objects -- those created
via configfs mkdir(2) from userspace and those specified from the
boot/module option string. This adds complexity and some redundancy here
and also means that boot/module param-created targets are not exposed
through the configfs namespace (and hence cannot be updated / destroyed
dynamically). However, this saves us from locking / refcounting
complexities that would need to be introduced in configfs to support
kernel-initiated item creation / destroy there.
(2) In configfs, item creation takes place in the call chain of the
mkdir(2) syscall in the driver subsystem. If we used an ioctl(2) to
create / destroy objects from userspace, the special userspace program is
able to fill out the structure to be passed into the ioctl and hence
specify attributes such as local interface that are required at the time
we set up the netpoll. For configfs, this information is not available at
the time of mkdir(2). So, we keep all newly-created targets (via
configfs) disabled by default. The user is expected to set various
attributes appropriately (including the local network interface if
required) and then write(2) "1" to the "enabled" attribute. Thus,
netpoll_setup() is then called on the set parameters in the context of
_this_ write(2) on the "enabled" attribute itself. This design enables
the user to reconfigure existing netconsole targets at runtime to be
attached to newly-come-up interfaces that may not have existed when
netconsole was loaded or when the targets were actually created. All this
effectively enables us to get rid of custom ioctls.
(3) Ultra-paranoid configfs attribute show() and store() operations, with
sanity and input range checking, using only safe string primitives, and
compliant with the recommendations in Documentation/filesystems/sysfs.txt.
(4) A new function netpoll_print_options() is created in the netpoll API,
that just prints out the configured parameters for a netpoll structure.
netpoll_parse_options() is modified to use that and it is also exported to
be used from netconsole.
Signed-off-by: Satyam Sharma <satyam@infradead.org>
Acked-by: Keiichi Kii <k-keiichi@bx.jp.nec.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2007-08-10 15:35:05 -07:00
|
|
|
Sender and receiver configuration:
|
|
|
|
==================================
|
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
It takes a string configuration parameter "netconsole" in the
|
2020-04-30 09:04:02 -07:00
|
|
|
following format::
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2023-07-14 04:13:29 -07:00
|
|
|
netconsole=[+][r][src-port]@[src-ip]/[<dev>],[tgt-port]@<tgt-ip>/[tgt-macaddr]
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
where
|
2020-04-30 09:04:02 -07:00
|
|
|
+ if present, enable extended console support
|
2023-07-14 04:13:29 -07:00
|
|
|
r if present, prepend kernel version (release) to the message
|
2020-04-30 09:04:02 -07:00
|
|
|
src-port source for UDP packets (defaults to 6665)
|
|
|
|
src-ip source IP to use (interface address)
|
|
|
|
dev network interface (eth0)
|
|
|
|
tgt-port port for logging agent (6666)
|
|
|
|
tgt-ip IP address for logging agent
|
|
|
|
tgt-macaddr ethernet MAC address for logging agent (broadcast)
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2020-04-30 09:04:02 -07:00
|
|
|
Examples::
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
linux netconsole=4444@10.0.0.1/eth1,9353@10.0.0.2/12:34:56:78:9a:bc
|
|
|
|
|
2020-04-30 09:04:02 -07:00
|
|
|
or::
|
2005-04-16 15:20:36 -07:00
|
|
|
|
|
|
|
insmod netconsole netconsole=@/,@10.0.0.2/
|
|
|
|
|
2020-04-30 09:04:02 -07:00
|
|
|
or using IPv6::
|
2013-01-07 13:52:42 -07:00
|
|
|
|
|
|
|
insmod netconsole netconsole=@/,@fd00:1:2:3::1/
|
|
|
|
|
2007-08-10 15:33:40 -07:00
|
|
|
It also supports logging to multiple remote agents by specifying
|
|
|
|
parameters for the multiple agents separated by semicolons and the
|
2020-04-30 09:04:02 -07:00
|
|
|
complete string enclosed in "quotes", thusly::
|
2007-08-10 15:33:40 -07:00
|
|
|
|
|
|
|
modprobe netconsole netconsole="@/,@10.0.0.2/;@/eth1,6892@10.0.0.3/"
|
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
Built-in netconsole starts immediately after the TCP stack is
|
|
|
|
initialized and attempts to bring up the supplied dev at the supplied
|
|
|
|
address.
|
|
|
|
|
2012-08-09 18:24:51 -07:00
|
|
|
The remote host has several options to receive the kernel messages,
|
|
|
|
for example:
|
|
|
|
|
|
|
|
1) syslogd
|
|
|
|
|
|
|
|
2) netcat
|
|
|
|
|
|
|
|
On distributions using a BSD-based netcat version (e.g. Fedora,
|
|
|
|
openSUSE and Ubuntu) the listening port must be specified without
|
2020-04-30 09:04:02 -07:00
|
|
|
the -p switch::
|
|
|
|
|
|
|
|
nc -u -l -p <port>' / 'nc -u -l <port>
|
|
|
|
|
|
|
|
or::
|
2012-08-09 18:24:51 -07:00
|
|
|
|
2020-04-30 09:04:02 -07:00
|
|
|
netcat -u -l -p <port>' / 'netcat -u -l <port>
|
2012-08-09 18:24:51 -07:00
|
|
|
|
|
|
|
3) socat
|
|
|
|
|
2020-04-30 09:04:02 -07:00
|
|
|
::
|
|
|
|
|
|
|
|
socat udp-recv:<port> -
|
2005-04-16 15:20:36 -07:00
|
|
|
|
[NET] netconsole: Support dynamic reconfiguration using configfs
Based upon initial work by Keiichi Kii <k-keiichi@bx.jp.nec.com>.
This patch introduces support for dynamic reconfiguration (adding, removing
and/or modifying parameters of netconsole targets at runtime) using a
userspace interface exported via configfs. Documentation is also updated
accordingly.
Issues and brief design overview:
(1) Kernel-initiated creation / destruction of kernel objects is not
possible with configfs -- the lifetimes of the "config items" is managed
exclusively from userspace. But netconsole must support boot/module
params too, and these are parsed in kernel and hence netpolls must be
setup from the kernel. Joel Becker suggested to separately manage the
lifetimes of the two kinds of netconsole_target objects -- those created
via configfs mkdir(2) from userspace and those specified from the
boot/module option string. This adds complexity and some redundancy here
and also means that boot/module param-created targets are not exposed
through the configfs namespace (and hence cannot be updated / destroyed
dynamically). However, this saves us from locking / refcounting
complexities that would need to be introduced in configfs to support
kernel-initiated item creation / destroy there.
(2) In configfs, item creation takes place in the call chain of the
mkdir(2) syscall in the driver subsystem. If we used an ioctl(2) to
create / destroy objects from userspace, the special userspace program is
able to fill out the structure to be passed into the ioctl and hence
specify attributes such as local interface that are required at the time
we set up the netpoll. For configfs, this information is not available at
the time of mkdir(2). So, we keep all newly-created targets (via
configfs) disabled by default. The user is expected to set various
attributes appropriately (including the local network interface if
required) and then write(2) "1" to the "enabled" attribute. Thus,
netpoll_setup() is then called on the set parameters in the context of
_this_ write(2) on the "enabled" attribute itself. This design enables
the user to reconfigure existing netconsole targets at runtime to be
attached to newly-come-up interfaces that may not have existed when
netconsole was loaded or when the targets were actually created. All this
effectively enables us to get rid of custom ioctls.
(3) Ultra-paranoid configfs attribute show() and store() operations, with
sanity and input range checking, using only safe string primitives, and
compliant with the recommendations in Documentation/filesystems/sysfs.txt.
(4) A new function netpoll_print_options() is created in the netpoll API,
that just prints out the configured parameters for a netpoll structure.
netpoll_parse_options() is modified to use that and it is also exported to
be used from netconsole.
Signed-off-by: Satyam Sharma <satyam@infradead.org>
Acked-by: Keiichi Kii <k-keiichi@bx.jp.nec.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2007-08-10 15:35:05 -07:00
|
|
|
Dynamic reconfiguration:
|
|
|
|
========================
|
|
|
|
|
|
|
|
Dynamic reconfigurability is a useful addition to netconsole that enables
|
|
|
|
remote logging targets to be dynamically added, removed, or have their
|
|
|
|
parameters reconfigured at runtime from a configfs-based userspace interface.
|
|
|
|
|
|
|
|
To include this feature, select CONFIG_NETCONSOLE_DYNAMIC when building the
|
|
|
|
netconsole module (or kernel, if netconsole is built-in).
|
|
|
|
|
|
|
|
Some examples follow (where configfs is mounted at the /sys/kernel/config
|
|
|
|
mountpoint).
|
|
|
|
|
2020-04-30 09:04:02 -07:00
|
|
|
To add a remote logging target (target names can be arbitrary)::
|
[NET] netconsole: Support dynamic reconfiguration using configfs
Based upon initial work by Keiichi Kii <k-keiichi@bx.jp.nec.com>.
This patch introduces support for dynamic reconfiguration (adding, removing
and/or modifying parameters of netconsole targets at runtime) using a
userspace interface exported via configfs. Documentation is also updated
accordingly.
Issues and brief design overview:
(1) Kernel-initiated creation / destruction of kernel objects is not
possible with configfs -- the lifetimes of the "config items" is managed
exclusively from userspace. But netconsole must support boot/module
params too, and these are parsed in kernel and hence netpolls must be
setup from the kernel. Joel Becker suggested to separately manage the
lifetimes of the two kinds of netconsole_target objects -- those created
via configfs mkdir(2) from userspace and those specified from the
boot/module option string. This adds complexity and some redundancy here
and also means that boot/module param-created targets are not exposed
through the configfs namespace (and hence cannot be updated / destroyed
dynamically). However, this saves us from locking / refcounting
complexities that would need to be introduced in configfs to support
kernel-initiated item creation / destroy there.
(2) In configfs, item creation takes place in the call chain of the
mkdir(2) syscall in the driver subsystem. If we used an ioctl(2) to
create / destroy objects from userspace, the special userspace program is
able to fill out the structure to be passed into the ioctl and hence
specify attributes such as local interface that are required at the time
we set up the netpoll. For configfs, this information is not available at
the time of mkdir(2). So, we keep all newly-created targets (via
configfs) disabled by default. The user is expected to set various
attributes appropriately (including the local network interface if
required) and then write(2) "1" to the "enabled" attribute. Thus,
netpoll_setup() is then called on the set parameters in the context of
_this_ write(2) on the "enabled" attribute itself. This design enables
the user to reconfigure existing netconsole targets at runtime to be
attached to newly-come-up interfaces that may not have existed when
netconsole was loaded or when the targets were actually created. All this
effectively enables us to get rid of custom ioctls.
(3) Ultra-paranoid configfs attribute show() and store() operations, with
sanity and input range checking, using only safe string primitives, and
compliant with the recommendations in Documentation/filesystems/sysfs.txt.
(4) A new function netpoll_print_options() is created in the netpoll API,
that just prints out the configured parameters for a netpoll structure.
netpoll_parse_options() is modified to use that and it is also exported to
be used from netconsole.
Signed-off-by: Satyam Sharma <satyam@infradead.org>
Acked-by: Keiichi Kii <k-keiichi@bx.jp.nec.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2007-08-10 15:35:05 -07:00
|
|
|
|
|
|
|
cd /sys/kernel/config/netconsole/
|
|
|
|
mkdir target1
|
|
|
|
|
|
|
|
Note that newly created targets have default parameter values (as mentioned
|
|
|
|
above) and are disabled by default -- they must first be enabled by writing
|
|
|
|
"1" to the "enabled" attribute (usually after setting parameters accordingly)
|
|
|
|
as described below.
|
|
|
|
|
2020-04-30 09:04:02 -07:00
|
|
|
To remove a target::
|
[NET] netconsole: Support dynamic reconfiguration using configfs
Based upon initial work by Keiichi Kii <k-keiichi@bx.jp.nec.com>.
This patch introduces support for dynamic reconfiguration (adding, removing
and/or modifying parameters of netconsole targets at runtime) using a
userspace interface exported via configfs. Documentation is also updated
accordingly.
Issues and brief design overview:
(1) Kernel-initiated creation / destruction of kernel objects is not
possible with configfs -- the lifetimes of the "config items" is managed
exclusively from userspace. But netconsole must support boot/module
params too, and these are parsed in kernel and hence netpolls must be
setup from the kernel. Joel Becker suggested to separately manage the
lifetimes of the two kinds of netconsole_target objects -- those created
via configfs mkdir(2) from userspace and those specified from the
boot/module option string. This adds complexity and some redundancy here
and also means that boot/module param-created targets are not exposed
through the configfs namespace (and hence cannot be updated / destroyed
dynamically). However, this saves us from locking / refcounting
complexities that would need to be introduced in configfs to support
kernel-initiated item creation / destroy there.
(2) In configfs, item creation takes place in the call chain of the
mkdir(2) syscall in the driver subsystem. If we used an ioctl(2) to
create / destroy objects from userspace, the special userspace program is
able to fill out the structure to be passed into the ioctl and hence
specify attributes such as local interface that are required at the time
we set up the netpoll. For configfs, this information is not available at
the time of mkdir(2). So, we keep all newly-created targets (via
configfs) disabled by default. The user is expected to set various
attributes appropriately (including the local network interface if
required) and then write(2) "1" to the "enabled" attribute. Thus,
netpoll_setup() is then called on the set parameters in the context of
_this_ write(2) on the "enabled" attribute itself. This design enables
the user to reconfigure existing netconsole targets at runtime to be
attached to newly-come-up interfaces that may not have existed when
netconsole was loaded or when the targets were actually created. All this
effectively enables us to get rid of custom ioctls.
(3) Ultra-paranoid configfs attribute show() and store() operations, with
sanity and input range checking, using only safe string primitives, and
compliant with the recommendations in Documentation/filesystems/sysfs.txt.
(4) A new function netpoll_print_options() is created in the netpoll API,
that just prints out the configured parameters for a netpoll structure.
netpoll_parse_options() is modified to use that and it is also exported to
be used from netconsole.
Signed-off-by: Satyam Sharma <satyam@infradead.org>
Acked-by: Keiichi Kii <k-keiichi@bx.jp.nec.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2007-08-10 15:35:05 -07:00
|
|
|
|
|
|
|
rmdir /sys/kernel/config/netconsole/othertarget/
|
|
|
|
|
|
|
|
The interface exposes these parameters of a netconsole target to userspace:
|
|
|
|
|
2020-04-30 09:04:02 -07:00
|
|
|
============== ================================= ============
|
[NET] netconsole: Support dynamic reconfiguration using configfs
Based upon initial work by Keiichi Kii <k-keiichi@bx.jp.nec.com>.
This patch introduces support for dynamic reconfiguration (adding, removing
and/or modifying parameters of netconsole targets at runtime) using a
userspace interface exported via configfs. Documentation is also updated
accordingly.
Issues and brief design overview:
(1) Kernel-initiated creation / destruction of kernel objects is not
possible with configfs -- the lifetimes of the "config items" is managed
exclusively from userspace. But netconsole must support boot/module
params too, and these are parsed in kernel and hence netpolls must be
setup from the kernel. Joel Becker suggested to separately manage the
lifetimes of the two kinds of netconsole_target objects -- those created
via configfs mkdir(2) from userspace and those specified from the
boot/module option string. This adds complexity and some redundancy here
and also means that boot/module param-created targets are not exposed
through the configfs namespace (and hence cannot be updated / destroyed
dynamically). However, this saves us from locking / refcounting
complexities that would need to be introduced in configfs to support
kernel-initiated item creation / destroy there.
(2) In configfs, item creation takes place in the call chain of the
mkdir(2) syscall in the driver subsystem. If we used an ioctl(2) to
create / destroy objects from userspace, the special userspace program is
able to fill out the structure to be passed into the ioctl and hence
specify attributes such as local interface that are required at the time
we set up the netpoll. For configfs, this information is not available at
the time of mkdir(2). So, we keep all newly-created targets (via
configfs) disabled by default. The user is expected to set various
attributes appropriately (including the local network interface if
required) and then write(2) "1" to the "enabled" attribute. Thus,
netpoll_setup() is then called on the set parameters in the context of
_this_ write(2) on the "enabled" attribute itself. This design enables
the user to reconfigure existing netconsole targets at runtime to be
attached to newly-come-up interfaces that may not have existed when
netconsole was loaded or when the targets were actually created. All this
effectively enables us to get rid of custom ioctls.
(3) Ultra-paranoid configfs attribute show() and store() operations, with
sanity and input range checking, using only safe string primitives, and
compliant with the recommendations in Documentation/filesystems/sysfs.txt.
(4) A new function netpoll_print_options() is created in the netpoll API,
that just prints out the configured parameters for a netpoll structure.
netpoll_parse_options() is modified to use that and it is also exported to
be used from netconsole.
Signed-off-by: Satyam Sharma <satyam@infradead.org>
Acked-by: Keiichi Kii <k-keiichi@bx.jp.nec.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2007-08-10 15:35:05 -07:00
|
|
|
enabled Is this target currently enabled? (read-write)
|
2015-06-25 15:01:41 -07:00
|
|
|
extended Extended mode enabled (read-write)
|
2023-07-14 04:13:29 -07:00
|
|
|
release Prepend kernel release to message (read-write)
|
[NET] netconsole: Support dynamic reconfiguration using configfs
Based upon initial work by Keiichi Kii <k-keiichi@bx.jp.nec.com>.
This patch introduces support for dynamic reconfiguration (adding, removing
and/or modifying parameters of netconsole targets at runtime) using a
userspace interface exported via configfs. Documentation is also updated
accordingly.
Issues and brief design overview:
(1) Kernel-initiated creation / destruction of kernel objects is not
possible with configfs -- the lifetimes of the "config items" is managed
exclusively from userspace. But netconsole must support boot/module
params too, and these are parsed in kernel and hence netpolls must be
setup from the kernel. Joel Becker suggested to separately manage the
lifetimes of the two kinds of netconsole_target objects -- those created
via configfs mkdir(2) from userspace and those specified from the
boot/module option string. This adds complexity and some redundancy here
and also means that boot/module param-created targets are not exposed
through the configfs namespace (and hence cannot be updated / destroyed
dynamically). However, this saves us from locking / refcounting
complexities that would need to be introduced in configfs to support
kernel-initiated item creation / destroy there.
(2) In configfs, item creation takes place in the call chain of the
mkdir(2) syscall in the driver subsystem. If we used an ioctl(2) to
create / destroy objects from userspace, the special userspace program is
able to fill out the structure to be passed into the ioctl and hence
specify attributes such as local interface that are required at the time
we set up the netpoll. For configfs, this information is not available at
the time of mkdir(2). So, we keep all newly-created targets (via
configfs) disabled by default. The user is expected to set various
attributes appropriately (including the local network interface if
required) and then write(2) "1" to the "enabled" attribute. Thus,
netpoll_setup() is then called on the set parameters in the context of
_this_ write(2) on the "enabled" attribute itself. This design enables
the user to reconfigure existing netconsole targets at runtime to be
attached to newly-come-up interfaces that may not have existed when
netconsole was loaded or when the targets were actually created. All this
effectively enables us to get rid of custom ioctls.
(3) Ultra-paranoid configfs attribute show() and store() operations, with
sanity and input range checking, using only safe string primitives, and
compliant with the recommendations in Documentation/filesystems/sysfs.txt.
(4) A new function netpoll_print_options() is created in the netpoll API,
that just prints out the configured parameters for a netpoll structure.
netpoll_parse_options() is modified to use that and it is also exported to
be used from netconsole.
Signed-off-by: Satyam Sharma <satyam@infradead.org>
Acked-by: Keiichi Kii <k-keiichi@bx.jp.nec.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2007-08-10 15:35:05 -07:00
|
|
|
dev_name Local network interface name (read-write)
|
|
|
|
local_port Source UDP port to use (read-write)
|
|
|
|
remote_port Remote agent's UDP port (read-write)
|
|
|
|
local_ip Source IP address to use (read-write)
|
|
|
|
remote_ip Remote agent's IP address (read-write)
|
|
|
|
local_mac Local interface's MAC address (read-only)
|
|
|
|
remote_mac Remote agent's MAC address (read-write)
|
2020-04-30 09:04:02 -07:00
|
|
|
============== ================================= ============
|
[NET] netconsole: Support dynamic reconfiguration using configfs
Based upon initial work by Keiichi Kii <k-keiichi@bx.jp.nec.com>.
This patch introduces support for dynamic reconfiguration (adding, removing
and/or modifying parameters of netconsole targets at runtime) using a
userspace interface exported via configfs. Documentation is also updated
accordingly.
Issues and brief design overview:
(1) Kernel-initiated creation / destruction of kernel objects is not
possible with configfs -- the lifetimes of the "config items" is managed
exclusively from userspace. But netconsole must support boot/module
params too, and these are parsed in kernel and hence netpolls must be
setup from the kernel. Joel Becker suggested to separately manage the
lifetimes of the two kinds of netconsole_target objects -- those created
via configfs mkdir(2) from userspace and those specified from the
boot/module option string. This adds complexity and some redundancy here
and also means that boot/module param-created targets are not exposed
through the configfs namespace (and hence cannot be updated / destroyed
dynamically). However, this saves us from locking / refcounting
complexities that would need to be introduced in configfs to support
kernel-initiated item creation / destroy there.
(2) In configfs, item creation takes place in the call chain of the
mkdir(2) syscall in the driver subsystem. If we used an ioctl(2) to
create / destroy objects from userspace, the special userspace program is
able to fill out the structure to be passed into the ioctl and hence
specify attributes such as local interface that are required at the time
we set up the netpoll. For configfs, this information is not available at
the time of mkdir(2). So, we keep all newly-created targets (via
configfs) disabled by default. The user is expected to set various
attributes appropriately (including the local network interface if
required) and then write(2) "1" to the "enabled" attribute. Thus,
netpoll_setup() is then called on the set parameters in the context of
_this_ write(2) on the "enabled" attribute itself. This design enables
the user to reconfigure existing netconsole targets at runtime to be
attached to newly-come-up interfaces that may not have existed when
netconsole was loaded or when the targets were actually created. All this
effectively enables us to get rid of custom ioctls.
(3) Ultra-paranoid configfs attribute show() and store() operations, with
sanity and input range checking, using only safe string primitives, and
compliant with the recommendations in Documentation/filesystems/sysfs.txt.
(4) A new function netpoll_print_options() is created in the netpoll API,
that just prints out the configured parameters for a netpoll structure.
netpoll_parse_options() is modified to use that and it is also exported to
be used from netconsole.
Signed-off-by: Satyam Sharma <satyam@infradead.org>
Acked-by: Keiichi Kii <k-keiichi@bx.jp.nec.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2007-08-10 15:35:05 -07:00
|
|
|
|
|
|
|
The "enabled" attribute is also used to control whether the parameters of
|
|
|
|
a target can be updated or not -- you can modify the parameters of only
|
|
|
|
disabled targets (i.e. if "enabled" is 0).
|
|
|
|
|
2020-04-30 09:04:02 -07:00
|
|
|
To update a target's parameters::
|
[NET] netconsole: Support dynamic reconfiguration using configfs
Based upon initial work by Keiichi Kii <k-keiichi@bx.jp.nec.com>.
This patch introduces support for dynamic reconfiguration (adding, removing
and/or modifying parameters of netconsole targets at runtime) using a
userspace interface exported via configfs. Documentation is also updated
accordingly.
Issues and brief design overview:
(1) Kernel-initiated creation / destruction of kernel objects is not
possible with configfs -- the lifetimes of the "config items" is managed
exclusively from userspace. But netconsole must support boot/module
params too, and these are parsed in kernel and hence netpolls must be
setup from the kernel. Joel Becker suggested to separately manage the
lifetimes of the two kinds of netconsole_target objects -- those created
via configfs mkdir(2) from userspace and those specified from the
boot/module option string. This adds complexity and some redundancy here
and also means that boot/module param-created targets are not exposed
through the configfs namespace (and hence cannot be updated / destroyed
dynamically). However, this saves us from locking / refcounting
complexities that would need to be introduced in configfs to support
kernel-initiated item creation / destroy there.
(2) In configfs, item creation takes place in the call chain of the
mkdir(2) syscall in the driver subsystem. If we used an ioctl(2) to
create / destroy objects from userspace, the special userspace program is
able to fill out the structure to be passed into the ioctl and hence
specify attributes such as local interface that are required at the time
we set up the netpoll. For configfs, this information is not available at
the time of mkdir(2). So, we keep all newly-created targets (via
configfs) disabled by default. The user is expected to set various
attributes appropriately (including the local network interface if
required) and then write(2) "1" to the "enabled" attribute. Thus,
netpoll_setup() is then called on the set parameters in the context of
_this_ write(2) on the "enabled" attribute itself. This design enables
the user to reconfigure existing netconsole targets at runtime to be
attached to newly-come-up interfaces that may not have existed when
netconsole was loaded or when the targets were actually created. All this
effectively enables us to get rid of custom ioctls.
(3) Ultra-paranoid configfs attribute show() and store() operations, with
sanity and input range checking, using only safe string primitives, and
compliant with the recommendations in Documentation/filesystems/sysfs.txt.
(4) A new function netpoll_print_options() is created in the netpoll API,
that just prints out the configured parameters for a netpoll structure.
netpoll_parse_options() is modified to use that and it is also exported to
be used from netconsole.
Signed-off-by: Satyam Sharma <satyam@infradead.org>
Acked-by: Keiichi Kii <k-keiichi@bx.jp.nec.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2007-08-10 15:35:05 -07:00
|
|
|
|
|
|
|
cat enabled # check if enabled is 1
|
|
|
|
echo 0 > enabled # disable the target (if required)
|
|
|
|
echo eth2 > dev_name # set local interface
|
|
|
|
echo 10.0.0.4 > remote_ip # update some parameter
|
|
|
|
echo cb:a9:87:65:43:21 > remote_mac # update more parameters
|
|
|
|
echo 1 > enabled # enable target again
|
|
|
|
|
|
|
|
You can also update the local interface dynamically. This is especially
|
|
|
|
useful if you want to use interfaces that have newly come up (and may not
|
|
|
|
have existed when netconsole was loaded / initialized).
|
|
|
|
|
2023-10-12 04:14:01 -07:00
|
|
|
Netconsole targets defined at boot time (or module load time) with the
|
|
|
|
`netconsole=` param are assigned the name `cmdline<index>`. For example, the
|
|
|
|
first target in the parameter is named `cmdline0`. You can control and modify
|
|
|
|
these targets by creating configfs directories with the matching name.
|
|
|
|
|
|
|
|
Let's suppose you have two netconsole targets defined at boot time::
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
You can modify these targets in runtime by creating the following targets::
|
|
|
|
|
|
|
|
mkdir cmdline0
|
|
|
|
cat cmdline0/remote_ip
|
|
|
|
10.0.0.2
|
|
|
|
|
|
|
|
mkdir cmdline1
|
|
|
|
cat cmdline1/remote_ip
|
|
|
|
10.0.0.3
|
|
|
|
|
2024-02-04 16:27:35 -07:00
|
|
|
Append User Data
|
|
|
|
----------------
|
|
|
|
|
|
|
|
Custom user data can be appended to the end of messages with netconsole
|
|
|
|
dynamic configuration enabled. User data entries can be modified without
|
|
|
|
changing the "enabled" attribute of a target.
|
|
|
|
|
net: netconsole: Add continuation line prefix to userdata messages
Add a space (' ') prefix to every userdata line to match docs for
dev-kmsg. To account for this extra character in each userdata entry,
reduce userdata entry names (directory name) from 54 characters to 53.
According to the dev-kmsg docs, a space is used for subsequent lines to
mark them as continuation lines.
> A line starting with ' ', is a continuation line, adding
> key/value pairs to the log message, which provide the machine
> readable context of the message, for reliable processing in
> userspace.
Testing for this patch::
cd /sys/kernel/config/netconsole && mkdir cmdline0
cd cmdline0
mkdir userdata/test && echo "hello" > userdata/test/value
mkdir userdata/test2 && echo "hello2" > userdata/test2/value
echo "message" > /dev/kmsg
Outputs::
6.8.0-rc5-virtme,12,493,231373579,-;message
test=hello
test2=hello2
And I confirmed all testing works as expected from the original patchset
Fixes: df03f830d099 ("net: netconsole: cache userdata formatted string in netconsole_target")
Signed-off-by: Matthew Wood <thepacketgeek@gmail.com>
Reviewed-by: Breno Leitao <leitao@debian.org>
Link: https://lore.kernel.org/r/20240308002525.248672-1-thepacketgeek@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
2024-03-07 17:25:24 -07:00
|
|
|
Directories (keys) under `userdata` are limited to 53 character length, and
|
2024-02-04 16:27:35 -07:00
|
|
|
data in `userdata/<key>/value` are limited to 200 bytes::
|
|
|
|
|
|
|
|
cd /sys/kernel/config/netconsole && mkdir cmdline0
|
|
|
|
cd cmdline0
|
|
|
|
mkdir userdata/foo
|
|
|
|
echo bar > userdata/foo/value
|
|
|
|
mkdir userdata/qux
|
|
|
|
echo baz > userdata/qux/value
|
|
|
|
|
|
|
|
Messages will now include this additional user data::
|
|
|
|
|
|
|
|
echo "This is a message" > /dev/kmsg
|
|
|
|
|
|
|
|
Sends::
|
|
|
|
|
|
|
|
12,607,22085407756,-;This is a message
|
net: netconsole: Add continuation line prefix to userdata messages
Add a space (' ') prefix to every userdata line to match docs for
dev-kmsg. To account for this extra character in each userdata entry,
reduce userdata entry names (directory name) from 54 characters to 53.
According to the dev-kmsg docs, a space is used for subsequent lines to
mark them as continuation lines.
> A line starting with ' ', is a continuation line, adding
> key/value pairs to the log message, which provide the machine
> readable context of the message, for reliable processing in
> userspace.
Testing for this patch::
cd /sys/kernel/config/netconsole && mkdir cmdline0
cd cmdline0
mkdir userdata/test && echo "hello" > userdata/test/value
mkdir userdata/test2 && echo "hello2" > userdata/test2/value
echo "message" > /dev/kmsg
Outputs::
6.8.0-rc5-virtme,12,493,231373579,-;message
test=hello
test2=hello2
And I confirmed all testing works as expected from the original patchset
Fixes: df03f830d099 ("net: netconsole: cache userdata formatted string in netconsole_target")
Signed-off-by: Matthew Wood <thepacketgeek@gmail.com>
Reviewed-by: Breno Leitao <leitao@debian.org>
Link: https://lore.kernel.org/r/20240308002525.248672-1-thepacketgeek@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
2024-03-07 17:25:24 -07:00
|
|
|
foo=bar
|
|
|
|
qux=baz
|
2024-02-04 16:27:35 -07:00
|
|
|
|
|
|
|
Preview the userdata that will be appended with::
|
|
|
|
|
|
|
|
cd /sys/kernel/config/netconsole/cmdline0/userdata
|
|
|
|
for f in `ls userdata`; do echo $f=$(cat userdata/$f/value); done
|
|
|
|
|
|
|
|
If a `userdata` entry is created but no data is written to the `value` file,
|
|
|
|
the entry will be omitted from netconsole messages::
|
|
|
|
|
|
|
|
cd /sys/kernel/config/netconsole && mkdir cmdline0
|
|
|
|
cd cmdline0
|
|
|
|
mkdir userdata/foo
|
|
|
|
echo bar > userdata/foo/value
|
|
|
|
mkdir userdata/qux
|
|
|
|
|
|
|
|
The `qux` key is omitted since it has no value::
|
|
|
|
|
|
|
|
echo "This is a message" > /dev/kmsg
|
|
|
|
12,607,22085407756,-;This is a message
|
net: netconsole: Add continuation line prefix to userdata messages
Add a space (' ') prefix to every userdata line to match docs for
dev-kmsg. To account for this extra character in each userdata entry,
reduce userdata entry names (directory name) from 54 characters to 53.
According to the dev-kmsg docs, a space is used for subsequent lines to
mark them as continuation lines.
> A line starting with ' ', is a continuation line, adding
> key/value pairs to the log message, which provide the machine
> readable context of the message, for reliable processing in
> userspace.
Testing for this patch::
cd /sys/kernel/config/netconsole && mkdir cmdline0
cd cmdline0
mkdir userdata/test && echo "hello" > userdata/test/value
mkdir userdata/test2 && echo "hello2" > userdata/test2/value
echo "message" > /dev/kmsg
Outputs::
6.8.0-rc5-virtme,12,493,231373579,-;message
test=hello
test2=hello2
And I confirmed all testing works as expected from the original patchset
Fixes: df03f830d099 ("net: netconsole: cache userdata formatted string in netconsole_target")
Signed-off-by: Matthew Wood <thepacketgeek@gmail.com>
Reviewed-by: Breno Leitao <leitao@debian.org>
Link: https://lore.kernel.org/r/20240308002525.248672-1-thepacketgeek@gmail.com
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
2024-03-07 17:25:24 -07:00
|
|
|
foo=bar
|
2024-02-04 16:27:35 -07:00
|
|
|
|
|
|
|
Delete `userdata` entries with `rmdir`::
|
|
|
|
|
|
|
|
rmdir /sys/kernel/config/netconsole/cmdline0/userdata/qux
|
|
|
|
|
|
|
|
.. warning::
|
|
|
|
When writing strings to user data values, input is broken up per line in
|
|
|
|
configfs store calls and this can cause confusing behavior::
|
|
|
|
|
|
|
|
mkdir userdata/testing
|
|
|
|
printf "val1\nval2" > userdata/testing/value
|
|
|
|
# userdata store value is called twice, first with "val1\n" then "val2"
|
|
|
|
# so "val2" is stored, being the last value stored
|
|
|
|
cat userdata/testing/value
|
|
|
|
val2
|
|
|
|
|
|
|
|
It is recommended to not write user data values with newlines.
|
|
|
|
|
2015-06-25 15:01:41 -07:00
|
|
|
Extended console:
|
|
|
|
=================
|
|
|
|
|
|
|
|
If '+' is prefixed to the configuration line or "extended" config file
|
|
|
|
is set to 1, extended console support is enabled. An example boot
|
2020-04-30 09:04:02 -07:00
|
|
|
param follows::
|
2015-06-25 15:01:41 -07:00
|
|
|
|
|
|
|
linux netconsole=+4444@10.0.0.1/eth1,9353@10.0.0.2/12:34:56:78:9a:bc
|
|
|
|
|
|
|
|
Log messages are transmitted with extended metadata header in the
|
2020-04-30 09:04:02 -07:00
|
|
|
following format which is the same as /dev/kmsg::
|
2015-06-25 15:01:41 -07:00
|
|
|
|
|
|
|
<level>,<sequnum>,<timestamp>,<contflag>;<message text>
|
|
|
|
|
2023-07-14 04:13:29 -07:00
|
|
|
If 'r' (release) feature is enabled, the kernel release version is
|
|
|
|
prepended to the start of the message. Example::
|
|
|
|
|
|
|
|
6.4.0,6,444,501151268,-;netconsole: network logging started
|
|
|
|
|
2015-06-25 15:01:41 -07:00
|
|
|
Non printable characters in <message text> are escaped using "\xff"
|
|
|
|
notation. If the message contains optional dictionary, verbatim
|
2023-01-29 16:10:48 -07:00
|
|
|
newline is used as the delimiter.
|
2015-06-25 15:01:41 -07:00
|
|
|
|
|
|
|
If a message doesn't fit in certain number of bytes (currently 1000),
|
|
|
|
the message is split into multiple fragments by netconsole. These
|
2020-04-30 09:04:02 -07:00
|
|
|
fragments are transmitted with "ncfrag" header field added::
|
2015-06-25 15:01:41 -07:00
|
|
|
|
|
|
|
ncfrag=<byte-offset>/<total-bytes>
|
|
|
|
|
|
|
|
For example, assuming a lot smaller chunk size, a message "the first
|
2020-04-30 09:04:02 -07:00
|
|
|
chunk, the 2nd chunk." may be split as follows::
|
2015-06-25 15:01:41 -07:00
|
|
|
|
|
|
|
6,416,1758426,-,ncfrag=0/31;the first chunk,
|
|
|
|
6,416,1758426,-,ncfrag=16/31; the 2nd chunk.
|
|
|
|
|
[NET] netconsole: Support dynamic reconfiguration using configfs
Based upon initial work by Keiichi Kii <k-keiichi@bx.jp.nec.com>.
This patch introduces support for dynamic reconfiguration (adding, removing
and/or modifying parameters of netconsole targets at runtime) using a
userspace interface exported via configfs. Documentation is also updated
accordingly.
Issues and brief design overview:
(1) Kernel-initiated creation / destruction of kernel objects is not
possible with configfs -- the lifetimes of the "config items" is managed
exclusively from userspace. But netconsole must support boot/module
params too, and these are parsed in kernel and hence netpolls must be
setup from the kernel. Joel Becker suggested to separately manage the
lifetimes of the two kinds of netconsole_target objects -- those created
via configfs mkdir(2) from userspace and those specified from the
boot/module option string. This adds complexity and some redundancy here
and also means that boot/module param-created targets are not exposed
through the configfs namespace (and hence cannot be updated / destroyed
dynamically). However, this saves us from locking / refcounting
complexities that would need to be introduced in configfs to support
kernel-initiated item creation / destroy there.
(2) In configfs, item creation takes place in the call chain of the
mkdir(2) syscall in the driver subsystem. If we used an ioctl(2) to
create / destroy objects from userspace, the special userspace program is
able to fill out the structure to be passed into the ioctl and hence
specify attributes such as local interface that are required at the time
we set up the netpoll. For configfs, this information is not available at
the time of mkdir(2). So, we keep all newly-created targets (via
configfs) disabled by default. The user is expected to set various
attributes appropriately (including the local network interface if
required) and then write(2) "1" to the "enabled" attribute. Thus,
netpoll_setup() is then called on the set parameters in the context of
_this_ write(2) on the "enabled" attribute itself. This design enables
the user to reconfigure existing netconsole targets at runtime to be
attached to newly-come-up interfaces that may not have existed when
netconsole was loaded or when the targets were actually created. All this
effectively enables us to get rid of custom ioctls.
(3) Ultra-paranoid configfs attribute show() and store() operations, with
sanity and input range checking, using only safe string primitives, and
compliant with the recommendations in Documentation/filesystems/sysfs.txt.
(4) A new function netpoll_print_options() is created in the netpoll API,
that just prints out the configured parameters for a netpoll structure.
netpoll_parse_options() is modified to use that and it is also exported to
be used from netconsole.
Signed-off-by: Satyam Sharma <satyam@infradead.org>
Acked-by: Keiichi Kii <k-keiichi@bx.jp.nec.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
2007-08-10 15:35:05 -07:00
|
|
|
Miscellaneous notes:
|
|
|
|
====================
|
|
|
|
|
2020-04-30 09:04:02 -07:00
|
|
|
.. Warning::
|
|
|
|
|
|
|
|
the default target ethernet setting uses the broadcast
|
|
|
|
ethernet address to send packets, which can cause increased load on
|
|
|
|
other systems on the same ethernet segment.
|
|
|
|
|
|
|
|
.. Tip::
|
|
|
|
|
|
|
|
some LAN switches may be configured to suppress ethernet broadcasts
|
|
|
|
so it is advised to explicitly specify the remote agents' MAC addresses
|
|
|
|
from the config parameters passed to netconsole.
|
|
|
|
|
|
|
|
.. Tip::
|
|
|
|
|
|
|
|
to find out the MAC address of, say, 10.0.0.2, you may try using::
|
|
|
|
|
|
|
|
ping -c 1 10.0.0.2 ; /sbin/arp -n | grep 10.0.0.2
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2020-04-30 09:04:02 -07:00
|
|
|
.. Tip::
|
2007-08-10 15:31:19 -07:00
|
|
|
|
2020-04-30 09:04:02 -07:00
|
|
|
in case the remote logging agent is on a separate LAN subnet than
|
|
|
|
the sender, it is suggested to try specifying the MAC address of the
|
|
|
|
default gateway (you may use /sbin/route -n to find it out) as the
|
|
|
|
remote MAC address instead.
|
2007-08-10 15:31:19 -07:00
|
|
|
|
2020-04-30 09:04:02 -07:00
|
|
|
.. note::
|
2007-08-10 15:31:19 -07:00
|
|
|
|
2020-04-30 09:04:02 -07:00
|
|
|
the network device (eth1 in the above case) can run any kind
|
|
|
|
of other network traffic, netconsole is not intrusive. Netconsole
|
|
|
|
might cause slight delays in other traffic if the volume of kernel
|
|
|
|
messages is high, but should have no other impact.
|
2007-08-10 15:31:19 -07:00
|
|
|
|
2020-04-30 09:04:02 -07:00
|
|
|
.. note::
|
2005-04-16 15:20:36 -07:00
|
|
|
|
2020-04-30 09:04:02 -07:00
|
|
|
if you find that the remote logging agent is not receiving or
|
|
|
|
printing all messages from the sender, it is likely that you have set
|
|
|
|
the "console_loglevel" parameter (on the sender) to only send high
|
|
|
|
priority messages to the console. You can change this at runtime using::
|
2007-08-10 15:31:19 -07:00
|
|
|
|
2020-04-30 09:04:02 -07:00
|
|
|
dmesg -n 8
|
2007-08-10 15:31:19 -07:00
|
|
|
|
2020-04-30 09:04:02 -07:00
|
|
|
or by specifying "debug" on the kernel command line at boot, to send
|
|
|
|
all kernel messages to the console. A specific value for this parameter
|
|
|
|
can also be set using the "loglevel" kernel boot option. See the
|
|
|
|
dmesg(8) man page and Documentation/admin-guide/kernel-parameters.rst
|
|
|
|
for details.
|
2007-08-10 15:31:19 -07:00
|
|
|
|
2005-04-16 15:20:36 -07:00
|
|
|
Netconsole was designed to be as instantaneous as possible, to
|
|
|
|
enable the logging of even the most critical kernel bugs. It works
|
|
|
|
from IRQ contexts as well, and does not enable interrupts while
|
2006-10-03 13:53:09 -07:00
|
|
|
sending packets. Due to these unique needs, configuration cannot
|
2005-04-16 15:20:36 -07:00
|
|
|
be more automatic, and some fundamental limitations will remain:
|
|
|
|
only IP networks, UDP packets and ethernet devices are supported.
|