netconsole.txt 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. started by Ingo Molnar <mingo@redhat.com>, 2001.09.17
  2. 2.6 port and netpoll api by Matt Mackall <mpm@selenic.com>, Sep 9 2003
  3. IPv6 support by Cong Wang <xiyou.wangcong@gmail.com>, Jan 1 2013
  4. Please send bug reports to Matt Mackall <mpm@selenic.com>
  5. Satyam Sharma <satyam.sharma@gmail.com>, and Cong Wang <xiyou.wangcong@gmail.com>
  6. Introduction:
  7. =============
  8. This module logs kernel printk messages over UDP allowing debugging of
  9. problem where disk logging fails and serial consoles are impractical.
  10. It can be used either built-in or as a module. As a built-in,
  11. netconsole initializes immediately after NIC cards and will bring up
  12. the specified interface as soon as possible. While this doesn't allow
  13. capture of early kernel panics, it does capture most of the boot
  14. process.
  15. Sender and receiver configuration:
  16. ==================================
  17. It takes a string configuration parameter "netconsole" in the
  18. following format:
  19. netconsole=[src-port]@[src-ip]/[<dev>],[tgt-port]@<tgt-ip>/[tgt-macaddr]
  20. where
  21. src-port source for UDP packets (defaults to 6665)
  22. src-ip source IP to use (interface address)
  23. dev network interface (eth0)
  24. tgt-port port for logging agent (6666)
  25. tgt-ip IP address for logging agent
  26. tgt-macaddr ethernet MAC address for logging agent (broadcast)
  27. Examples:
  28. linux netconsole=4444@10.0.0.1/eth1,9353@10.0.0.2/12:34:56:78:9a:bc
  29. or
  30. insmod netconsole netconsole=@/,@10.0.0.2/
  31. or using IPv6
  32. insmod netconsole netconsole=@/,@fd00:1:2:3::1/
  33. It also supports logging to multiple remote agents by specifying
  34. parameters for the multiple agents separated by semicolons and the
  35. complete string enclosed in "quotes", thusly:
  36. modprobe netconsole netconsole="@/,@10.0.0.2/;@/eth1,6892@10.0.0.3/"
  37. Built-in netconsole starts immediately after the TCP stack is
  38. initialized and attempts to bring up the supplied dev at the supplied
  39. address.
  40. The remote host has several options to receive the kernel messages,
  41. for example:
  42. 1) syslogd
  43. 2) netcat
  44. On distributions using a BSD-based netcat version (e.g. Fedora,
  45. openSUSE and Ubuntu) the listening port must be specified without
  46. the -p switch:
  47. 'nc -u -l -p <port>' / 'nc -u -l <port>' or
  48. 'netcat -u -l -p <port>' / 'netcat -u -l <port>'
  49. 3) socat
  50. 'socat udp-recv:<port> -'
  51. Dynamic reconfiguration:
  52. ========================
  53. Dynamic reconfigurability is a useful addition to netconsole that enables
  54. remote logging targets to be dynamically added, removed, or have their
  55. parameters reconfigured at runtime from a configfs-based userspace interface.
  56. [ Note that the parameters of netconsole targets that were specified/created
  57. from the boot/module option are not exposed via this interface, and hence
  58. cannot be modified dynamically. ]
  59. To include this feature, select CONFIG_NETCONSOLE_DYNAMIC when building the
  60. netconsole module (or kernel, if netconsole is built-in).
  61. Some examples follow (where configfs is mounted at the /sys/kernel/config
  62. mountpoint).
  63. To add a remote logging target (target names can be arbitrary):
  64. cd /sys/kernel/config/netconsole/
  65. mkdir target1
  66. Note that newly created targets have default parameter values (as mentioned
  67. above) and are disabled by default -- they must first be enabled by writing
  68. "1" to the "enabled" attribute (usually after setting parameters accordingly)
  69. as described below.
  70. To remove a target:
  71. rmdir /sys/kernel/config/netconsole/othertarget/
  72. The interface exposes these parameters of a netconsole target to userspace:
  73. enabled Is this target currently enabled? (read-write)
  74. dev_name Local network interface name (read-write)
  75. local_port Source UDP port to use (read-write)
  76. remote_port Remote agent's UDP port (read-write)
  77. local_ip Source IP address to use (read-write)
  78. remote_ip Remote agent's IP address (read-write)
  79. local_mac Local interface's MAC address (read-only)
  80. remote_mac Remote agent's MAC address (read-write)
  81. The "enabled" attribute is also used to control whether the parameters of
  82. a target can be updated or not -- you can modify the parameters of only
  83. disabled targets (i.e. if "enabled" is 0).
  84. To update a target's parameters:
  85. cat enabled # check if enabled is 1
  86. echo 0 > enabled # disable the target (if required)
  87. echo eth2 > dev_name # set local interface
  88. echo 10.0.0.4 > remote_ip # update some parameter
  89. echo cb:a9:87:65:43:21 > remote_mac # update more parameters
  90. echo 1 > enabled # enable target again
  91. You can also update the local interface dynamically. This is especially
  92. useful if you want to use interfaces that have newly come up (and may not
  93. have existed when netconsole was loaded / initialized).
  94. Miscellaneous notes:
  95. ====================
  96. WARNING: the default target ethernet setting uses the broadcast
  97. ethernet address to send packets, which can cause increased load on
  98. other systems on the same ethernet segment.
  99. TIP: some LAN switches may be configured to suppress ethernet broadcasts
  100. so it is advised to explicitly specify the remote agents' MAC addresses
  101. from the config parameters passed to netconsole.
  102. TIP: to find out the MAC address of, say, 10.0.0.2, you may try using:
  103. ping -c 1 10.0.0.2 ; /sbin/arp -n | grep 10.0.0.2
  104. TIP: in case the remote logging agent is on a separate LAN subnet than
  105. the sender, it is suggested to try specifying the MAC address of the
  106. default gateway (you may use /sbin/route -n to find it out) as the
  107. remote MAC address instead.
  108. NOTE: the network device (eth1 in the above case) can run any kind
  109. of other network traffic, netconsole is not intrusive. Netconsole
  110. might cause slight delays in other traffic if the volume of kernel
  111. messages is high, but should have no other impact.
  112. NOTE: if you find that the remote logging agent is not receiving or
  113. printing all messages from the sender, it is likely that you have set
  114. the "console_loglevel" parameter (on the sender) to only send high
  115. priority messages to the console. You can change this at runtime using:
  116. dmesg -n 8
  117. or by specifying "debug" on the kernel command line at boot, to send
  118. all kernel messages to the console. A specific value for this parameter
  119. can also be set using the "loglevel" kernel boot option. See the
  120. dmesg(8) man page and Documentation/kernel-parameters.txt for details.
  121. Netconsole was designed to be as instantaneous as possible, to
  122. enable the logging of even the most critical kernel bugs. It works
  123. from IRQ contexts as well, and does not enable interrupts while
  124. sending packets. Due to these unique needs, configuration cannot
  125. be more automatic, and some fundamental limitations will remain:
  126. only IP networks, UDP packets and ethernet devices are supported.