# Explanation of parameters:
# https://www.kernel.org/doc/Documentation/networking/netconsole.txt

# Set kernel loglevel to this value (8 is to log all messages).
LOGLEVEL=8

# Extended console flag: '+' or empty.
EXT=

# Local machine parameters all are optional.
SRCPORT=
SRCIP=
SRCDEV=

# Remote logging agent address, port (default is 6666) and mac.
# All, except address are optional.
TGTPORT=
TGTIP=127.0.0.1
TGTMAC=

# 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
#    the -p switch:
#
#    'nc -u -l -p <port>' / 'nc -u -l <port>' or
#    'netcat -u -l -p <port>' / 'netcat -u -l <port>'
#
# 3) socat
#
#    'socat udp-recv:<port> -'
