blob: 167114a9ec31e3218041c20f279a9c8bae808ee6 (
plain)
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
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
|
pethtool(8)
===========
NAME
----
pethtool - Display or change ethernet card settings
SYNOPSIS
--------
pethtool [OPTIONS] [<INTERFACE>]
DESCRIPTION
-----------
This script mimic ethtool behavior, but is written purely in python
and python module ethtool.
OPTIONS
-------
INTERFACE::
Is the name of the ethernet device on which pethtool should operate.
-h, --help::
Show help message and exit.
-c|--show-coalesce::
Show coalesce options
-C|--coalesce::
Set coalesce options
adaptive-rx on|off
adaptive-tx on|off
rx-usecs N
rx-frames N
rx-usecs-irq N
rx-frames-irq N
tx-usecs N
tx-frames N
tx-usecs-irq N
tx-frames-irq N
stats-block-usecs N
pkt-rate-low N
rx-usecs-low N
rx-frames-low N
tx-usecs-low N
tx-frames-low N
pkt-rate-high N
rx-usecs-high N
rx-frames-high N
tx-usecs-high N
tx-frames-high N
sample-interval N
-i|--driver::
Show driver information
-k|--show-offload::
Get protocol offload information
-K|--offload::
Set protocol offload;;
[ tso on|off ]
SEE ALSO
--------
ethtool(8)
AUTHORS
-------
Arnaldo Carvalho de Melo <acme@redhat.com>
Man page written by Miroslav Suchý <msuchy@redhat.com>
|