Changes between Version 3 and Version 4 of NetConsole
- Timestamp:
- Jan 23, 2011, 8:15:05 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
NetConsole
v3 v4 5 5 === Settings === 6 6 7 Configuration is done by {{{kernel boot parameter}}} with 8 {{{ 9 netconsole=6665@192.168.1.1/eth0,6666@192.168.1.2/ 10 }}} 11 12 That means 7 13 * Embedded device: 6665@192.168.1.1/eth0 14 * device eth0 15 * address 192.168.1.1 16 * port 6665 8 17 * Remote computer: 6666@192.168.1.2 18 * address 192.168.1.2 19 * port 6666 20 21 The {{{kernel boot parameter}}} ''{{{netconsole}}}'' 22 is defined during {{{make menuconfig}}} 23 as part of {{{CONFIG_CMDLINE}}}. 9 24 10 25 === Remote computer setup === … … 14 29 * netmask: 255.255.255.0 15 30 * no default gw 16 * use netcat to listen to any packets on port 6666 and dump contents to the console 17 * nc -u -p 6666 -l 31 * use {{{netcat}}} to listen for UDP packets on port 6666 and dump contents to the console 32 {{{ 33 nc -l -p 6666 -u 34 }}} 18 35 19 36 === Links ===