Changes between Version 3 and Version 4 of NetConsole


Ignore:
Timestamp:
Jan 23, 2011, 8:15:05 PM (12 years ago)
Author:
stappers
Comment:

kernel boot parameter , netcat command

Legend:

Unmodified
Added
Removed
Modified
  • NetConsole

    v3 v4  
    55=== Settings ===
    66
     7Configuration is done by {{{kernel boot parameter}}} with
     8{{{
     9netconsole=6665@192.168.1.1/eth0,6666@192.168.1.2/
     10}}}
     11
     12That means
    713    * Embedded device: 6665@192.168.1.1/eth0
     14       * device eth0
     15       * address 192.168.1.1
     16       * port 6665
    817    * Remote computer: 6666@192.168.1.2
     18       * address 192.168.1.2
     19       * port 6666
     20
     21The {{{kernel boot parameter}}} ''{{{netconsole}}}''
     22is defined during {{{make menuconfig}}}
     23as part of {{{CONFIG_CMDLINE}}}.
    924
    1025=== Remote computer setup ===
     
    1429       * netmask: 255.255.255.0
    1530       * 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{{{
     33nc -l -p 6666 -u
     34}}}
    1835
    1936=== Links ===