1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
<html>
<head>
<title>Netdev moodss module.</title>
</head>
<body>
<p>This is a view of network devices statistics for Linux.
<p>Data is displayed in two sets of two tables: 2 for data received by the interface with absolute and per second values, the others for data transmitted by the interface, again with absolute and per second values.
<pre><img src="netdev.gif"></pre>
<p>The table columns are:
<ul>
<li>for received data:<ul>
<li>network device name</li>
<li>total bytes received</li>
<li>total packets received</li>
<li>bad packets received</li>
<li>received packets dropped for lack of space in kernel buffers, plus receiver missed packets</li>
<li>receiver FIFO overruns</li>
<li>frame alignment errors received, including length, receiver ring buff overflow and CRC errors</li>
<li>compressed packets received</li>
<li>multicast packets received</li>
</ul></li>
<li>for transmitted data:<ul>
<li>network device name</li>
<li>total bytes transmitted</li>
<li>total packets transmitted</li>
<li>packet transmit problems</li>
<li>packets not transmitted for lack of space in kernel buffers</li>
<li>transmitter FIFO overruns</li>
<li>collisions while transmitting</li>
<li>carriers errors, including aborted, window and heartbeat errors</li>
<li>compressed packets transmitted</li>
</ul></li>
</ul>
<p><b>Module options:</b>
<ul>
<li>
<i>-r (--remote) [[rsh|ssh]://][user@]host</i>
<br>remote monitoring using <i>user</i> as logname on remote host <i>host</i> (<i>rsh</i> or <i>ssh</i> facilities must be properly setup). If <i>user</i> is not specified, current user is used as logname on remote host. The protocol is either <i>ssh</i> or <i>rsh</i> (used by default). The module title is set to <i>arp(host)</i>.
</li>
</ul>
<p><b>Examples:</b>
<pre>$ moodss netdev
$ moodss netdev -r jdoe@foo.bar.com
$ moodss netdev -r ssh://jdoe@foo.bar.com
$ moodss netdev --remote foo.bar.com</pre>
</body>
</html>
|