PIXNET Logo登入

Horace papa's life

跳到主文

To memory my life, learning , family

部落格全站分類:心情日記

  • 相簿
  • 部落格
  • 留言
  • 名片
  • 10月 17 週三 201211:59
  • netconsole

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>
and Satyam Sharma <satyam.sharma@gmail.com>
Introduction:
=============
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.
Sender and receiver configuration:
==================================
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/
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/"
Built-in netconsole starts immediately after the TCP stack is
initialized and attempts to bring up the supplied dev at the supplied
address.
The remote host can run either 'netcat -u -l -p <port>',
'nc -l -u <port>' or syslogd.
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:
====================
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.
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.
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.
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.
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
sending packets. Due to these unique needs, configuration cannot
be more automatic, and some fundamental limitations will remain:
only IP networks, UDP packets and ethernet devices are supported.
(繼續閱讀...)
文章標籤

horace papa 發表在 痞客邦 留言(0) 人氣(55)

  • 個人分類:linux application
▲top
  • 11月 21 週一 201118:18
  • introduction to igmp for iptv networks

Here is the good introduction for igmp iptv.
https://www.apac-juniper.net/juniper_public/campaign/pdf/iptv/sc/200188.pdf
(繼續閱讀...)
文章標籤

horace papa 發表在 痞客邦 留言(0) 人氣(20)

  • 個人分類:linux application
▲top
  • 4月 20 週三 201110:26
  • Static, Shared Dynamic and Loadable Linux Libraries

copy from
http://www.yolinux.com/TUTORIALS/LibraryArchives-StaticAndDynamic.html
Why libraries are used:
This methodology, also known as "shared components" or "archive libraries", groups together multiple compiled object code files into a single file known as a library. Typically C functions/C++ classes and methods which can be shared by more than one application are broken out of the application's source code, compiled and bundled into a library. The C standard libraries and C++ STL are examples of shared components which can be linked with your code. The benefit is that each and every object file need not be stated when linking because the developer can reference the individual library. This simplifies the multiple use and sharing of software components between applications. It also allows application vendors a way to simply release an API to interface with an application. Components which are large can be created for dynamic use, thus the library remain separate from the executable reducing it's size and thus disk space used. The library components are then called by various applications for use when needed.
(繼續閱讀...)
文章標籤

horace papa 發表在 痞客邦 留言(0) 人氣(88)

  • 個人分類:linux application
▲top
  • 6月 03 週四 201015:30
  • fflush 的功用

fflush就是將output buffer的內容寫到file裡.那如果是fflush()就是寫到stdout.
Syntax:
#include <stdio.h>
int fflush( FILE *stream );
(繼續閱讀...)
文章標籤

horace papa 發表在 痞客邦 留言(0) 人氣(150)

  • 個人分類:linux application
▲top
1

個人資訊

horace papa
暱稱:
horace papa
分類:
心情日記
好友:
累積中
地區:

熱門文章

  • (486)[ARM] Buffer allocation for device DMA and DCache coherence
  • (3,059)invalidate/flush cache
  • (636)[音響論壇] 調整LP唱盤的八大基本功
  • (53)ntp with gps pps impliment
  • (15)PDCP/RLC/MAC分層負責LTE第二層通訊協定把關QoS
  • (57)电子管功放布局
  • (5,068)修裡音響功率擴大機的維修方法及步驟詳細教學
  • (12,976)A類、B類、C類、D類、G類放大器、擴大機的特性比較(引用)
  • (176)安全的維修功率擴大機/利用燈泡代替保險私保護電路(引用)
  • (350)什麼是理想的擴大機

文章分類

  • iptables (1)
  • Makefile (1)
  • ubuntu (2)
  • openocd (0)
  • docker (0)
  • openwrt (1)
  • compiler/tool chain (0)
  • my home (1)
  • tube (7)
  • linux networking (9)
  • LTE (3)
  • networking (1)
  • 音響 (0)
  • Linux (2)
  • 面試考題 (0)
  • eclipse IDE (2)
  • virtualbox (2)
  • EPC airinterface5g (1)
  • 音響 (1)
  • openjtag (3)
  • networking (6)
  • linux application (4)
  • Wireless (2)
  • Linux server setting (1)
  • Linux kernel (16)
  • Linux (6)
  • computing (0)
  • 未分類文章 (1)

最新文章

  • [wireshark] qt.qpa.plugin: Could not find the Qt platform plugin "xcb" in "" This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem.
  • Linux iptables and example.
  • Makefile variables
  • Microsoft teams install in ubuntu 16.04 failed " Depends: libgtk-3-0 (>= 3.19.12) but 3.18.9-1ubuntu3.3"
  • [OpenWrt] error: dereferencing pointer to incomplete type 'RSA {aka struct rsa_st}' if (BN_num_bits(key->e) > 64) ^~ scripts/Makefile.host:134:
  • ubuntu system boot up missing share liberary "/sbin/init: error while loading shared librariues librt.so.1"
  • 4-Way Handshake
  • bash ShellCheck
  • what #address-cells and #size-cells mean are in device-tree.
  • An In-Depth Guide to iptables, the Linux Firewall(轉載)

文章精選

文章搜尋

誰來我家

參觀人氣

  • 本日人氣:
  • 累積人氣: