Blame view

Documentation/networking/netconsole.txt 6.06 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
  
  started by Ingo Molnar <mingo@redhat.com>, 2001.09.17
  2.6 port and netpoll api by Matt Mackall <mpm@selenic.com>, Sep 9 2003
  
  Please send bug reports to Matt Mackall <mpm@selenic.com>
0bcc18161   Satyam Sharma   [NET] netconsole:...
6
7
8
9
  and Satyam Sharma <satyam.sharma@gmail.com>
  
  Introduction:
  =============
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
10
11
12
13
14
15
16
17
18
  
  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.
0bcc18161   Satyam Sharma   [NET] netconsole:...
19
20
  Sender and receiver configuration:
  ==================================
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
  It takes a string configuration parameter "netconsole" in the
  following format:
  
   netconsole=[src-port]@[src-ip]/[<dev>],[tgt-port]@<tgt-ip>/[tgt-macaddr]
  
     where
          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)
  
  Examples:
  
   linux netconsole=4444@10.0.0.1/eth1,9353@10.0.0.2/12:34:56:78:9a:bc
  
    or
  
   insmod netconsole netconsole=@/,@10.0.0.2/
b5427c271   Satyam Sharma   [NET] netconsole:...
41
42
43
44
45
  It also supports logging to multiple remote agents by specifying
  parameters for the multiple agents separated by semicolons and the
  complete string enclosed in "quotes", thusly:
  
   modprobe netconsole netconsole="@/,@10.0.0.2/;@/eth1,6892@10.0.0.3/"
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
46
47
48
  Built-in netconsole starts immediately after the TCP stack is
  initialized and attempts to bring up the supplied dev at the supplied
  address.
e955281cd   Jesse Barnes   networking: docum...
49
50
  The remote host can run either 'netcat -u -l -p <port>',
  'nc -l -u <port>' or syslogd.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
51

0bcc18161   Satyam Sharma   [NET] netconsole:...
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
  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.
  [ Note that the parameters of netconsole targets that were specified/created
  from the boot/module option are not exposed via this interface, and hence
  cannot be modified dynamically. ]
  
  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).
  
  To add a remote logging target (target names can be arbitrary):
  
   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.
  
  To remove a target:
  
   rmdir /sys/kernel/config/netconsole/othertarget/
  
  The interface exposes these parameters of a netconsole target to userspace:
  
  	enabled		Is this target currently enabled?	(read-write)
  	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)
  
  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).
  
  To update a target's parameters:
  
   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).
  
  Miscellaneous notes:
  ====================
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
112
113
114
  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.
8d4ef88b5   Satyam Sharma   [NET] netconsole:...
115
116
117
118
119
120
121
122
123
124
125
126
  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
  
  TIP: 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.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
127
128
129
130
  NOTE: 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.
8d4ef88b5   Satyam Sharma   [NET] netconsole:...
131
132
133
134
135
136
137
138
139
140
141
  NOTE: 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:
  
   dmesg -n 8
  
  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/kernel-parameters.txt for details.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
142
143
144
  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
84eb8d060   Matt LaPlante   Fix "can not" in ...
145
  sending packets. Due to these unique needs, configuration cannot
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
146
147
  be more automatic, and some fundamental limitations will remain:
  only IP networks, UDP packets and ethernet devices are supported.