]> git.proxmox.com Git - mirror_iproute2.git/blob - man/man8/tc.8
Merge branch 'master' into next
[mirror_iproute2.git] / man / man8 / tc.8
1 .TH TC 8 "16 December 2001" "iproute2" "Linux"
2 .SH NAME
3 tc \- show / manipulate traffic control settings
4 .SH SYNOPSIS
5 .B tc
6 .RI "[ " OPTIONS " ]"
7 .B qdisc [ add | change | replace | link | delete ] dev
8 \fIDEV\fR
9 .B
10 [ parent
11 \fIqdisc-id\fR
12 .B | root ]
13 .B [ handle
14 \fIqdisc-id\fR ]
15 .B [ ingress_block
16 \fIBLOCK_INDEX\fR ]
17 .B [ egress_block
18 \fIBLOCK_INDEX\fR ] qdisc
19 [ qdisc specific parameters ]
20 .P
21
22 .B tc
23 .RI "[ " OPTIONS " ]"
24 .B class [ add | change | replace | delete ] dev
25 \fIDEV\fR
26 .B parent
27 \fIqdisc-id\fR
28 .B [ classid
29 \fIclass-id\fR ] qdisc
30 [ qdisc specific parameters ]
31 .P
32
33 .B tc
34 .RI "[ " OPTIONS " ]"
35 .B filter [ add | change | replace | delete | get ] dev
36 \fIDEV\fR
37 .B [ parent
38 \fIqdisc-id\fR
39 .B | root ] [ handle \fIfilter-id\fR ]
40 .B protocol
41 \fIprotocol\fR
42 .B prio
43 \fIpriority\fR filtertype
44 [ filtertype specific parameters ]
45 .B flowid
46 \fIflow-id\fR
47
48 .B tc
49 .RI "[ " OPTIONS " ]"
50 .B filter [ add | change | replace | delete | get ] block
51 \fIBLOCK_INDEX\fR
52 .B [ handle \fIfilter-id\fR ]
53 .B protocol
54 \fIprotocol\fR
55 .B prio
56 \fIpriority\fR filtertype
57 [ filtertype specific parameters ]
58 .B flowid
59 \fIflow-id\fR
60
61 .B tc
62 .RI "[ " OPTIONS " ]"
63 .B chain [ add | delete | get ] dev
64 \fIDEV\fR
65 .B [ parent
66 \fIqdisc-id\fR
67 .B | root ]\fR filtertype
68 [ filtertype specific parameters ]
69
70 .B tc
71 .RI "[ " OPTIONS " ]"
72 .B chain [ add | delete | get ] block
73 \fIBLOCK_INDEX\fR filtertype
74 [ filtertype specific parameters ]
75
76
77 .B tc
78 .RI "[ " OPTIONS " ]"
79 .RI "[ " FORMAT " ]"
80 .B qdisc show [ dev
81 \fIDEV\fR
82 .B ]
83 .P
84 .B tc
85 .RI "[ " OPTIONS " ]"
86 .RI "[ " FORMAT " ]"
87 .B class show dev
88 \fIDEV\fR
89 .P
90 .B tc
91 .RI "[ " OPTIONS " ]"
92 .B filter show dev
93 \fIDEV\fR
94 .P
95 .B tc
96 .RI "[ " OPTIONS " ]"
97 .B filter show block
98 \fIBLOCK_INDEX\fR
99 .P
100 .B tc
101 .RI "[ " OPTIONS " ]"
102 .B chain show dev
103 \fIDEV\fR
104 .P
105 .B tc
106 .RI "[ " OPTIONS " ]"
107 .B chain show block
108 \fIBLOCK_INDEX\fR
109
110 .P
111 .B tc
112 .RI "[ " OPTIONS " ]"
113 .B monitor [ file
114 \fIFILENAME\fR
115 .B ]
116
117 .P
118 .ti 8
119 .IR OPTIONS " := {"
120 \fB[ -force ] -b\fR[\fIatch\fR] \fB[ filename ] \fR|
121 \fB[ \fB-n\fR[\fIetns\fR] name \fB] \fR|
122 \fB[ \fB-N\fR[\fIumeric\fR] \fB] \fR|
123 \fB[ \fB-nm \fR| \fB-nam\fR[\fIes\fR] \fB] \fR|
124 \fB[ \fR{ \fB-cf \fR| \fB-c\fR[\fIonf\fR] \fR} \fB[ filename ] \fB] \fR
125 \fB[ -t\fR[imestamp\fR] \fB\] \fR| \fB[ -t\fR[short\fR] \fR| \fB[
126 -o\fR[neline\fR] \fB]\fR }
127
128 .ti 8
129 .IR FORMAT " := {"
130 \fB\-s\fR[\fItatistics\fR] |
131 \fB\-d\fR[\fIetails\fR] |
132 \fB\-r\fR[\fIaw\fR] |
133 \fB\-i\fR[\fIec\fR] |
134 \fB\-g\fR[\fIraph\fR] |
135 \fB\-j\fR[\fIjson\fR] |
136 \fB\-p\fR[\fIretty\fR] |
137 \fB\-col\fR[\fIor\fR] }
138
139 .SH DESCRIPTION
140 .B Tc
141 is used to configure Traffic Control in the Linux kernel. Traffic Control consists
142 of the following:
143
144 .TP
145 SHAPING
146 When traffic is shaped, its rate of transmission is under control. Shaping may
147 be more than lowering the available bandwidth - it is also used to smooth out
148 bursts in traffic for better network behaviour. Shaping occurs on egress.
149
150 .TP
151 SCHEDULING
152 By scheduling the transmission of packets it is possible to improve interactivity
153 for traffic that needs it while still guaranteeing bandwidth to bulk transfers. Reordering
154 is also called prioritizing, and happens only on egress.
155
156 .TP
157 POLICING
158 Whereas shaping deals with transmission of traffic, policing pertains to traffic
159 arriving. Policing thus occurs on ingress.
160
161 .TP
162 DROPPING
163 Traffic exceeding a set bandwidth may also be dropped forthwith, both on
164 ingress and on egress.
165
166 .P
167 Processing of traffic is controlled by three kinds of objects: qdiscs,
168 classes and filters.
169
170 .SH QDISCS
171 .B qdisc
172 is short for 'queueing discipline' and it is elementary to
173 understanding traffic control. Whenever the kernel needs to send a
174 packet to an interface, it is
175 .B enqueued
176 to the qdisc configured for that interface. Immediately afterwards, the kernel
177 tries to get as many packets as possible from the qdisc, for giving them
178 to the network adaptor driver.
179
180 A simple QDISC is the 'pfifo' one, which does no processing at all and is a pure
181 First In, First Out queue. It does however store traffic when the network interface
182 can't handle it momentarily.
183
184 .SH CLASSES
185 Some qdiscs can contain classes, which contain further qdiscs - traffic may
186 then be enqueued in any of the inner qdiscs, which are within the
187 .B classes.
188 When the kernel tries to dequeue a packet from such a
189 .B classful qdisc
190 it can come from any of the classes. A qdisc may for example prioritize
191 certain kinds of traffic by trying to dequeue from certain classes
192 before others.
193
194 .SH FILTERS
195 A
196 .B filter
197 is used by a classful qdisc to determine in which class a packet will
198 be enqueued. Whenever traffic arrives at a class with subclasses, it needs
199 to be classified. Various methods may be employed to do so, one of these
200 are the filters. All filters attached to the class are called, until one of
201 them returns with a verdict. If no verdict was made, other criteria may be
202 available. This differs per qdisc.
203
204 It is important to notice that filters reside
205 .B within
206 qdiscs - they are not masters of what happens.
207
208 The available filters are:
209 .TP
210 basic
211 Filter packets based on an ematch expression. See
212 .BR tc-ematch (8)
213 for details.
214 .TP
215 bpf
216 Filter packets using (e)BPF, see
217 .BR tc-bpf (8)
218 for details.
219 .TP
220 cgroup
221 Filter packets based on the control group of their process. See
222 . BR tc-cgroup (8)
223 for details.
224 .TP
225 flow, flower
226 Flow-based classifiers, filtering packets based on their flow (identified by selectable keys). See
227 .BR tc-flow "(8) and"
228 .BR tc-flower (8)
229 for details.
230 .TP
231 fw
232 Filter based on fwmark. Directly maps fwmark value to traffic class. See
233 .BR tc-fw (8).
234 .TP
235 route
236 Filter packets based on routing table. See
237 .BR tc-route (8)
238 for details.
239 .TP
240 rsvp
241 Match Resource Reservation Protocol (RSVP) packets.
242 .TP
243 tcindex
244 Filter packets based on traffic control index. See
245 .BR tc-tcindex (8).
246 .TP
247 u32
248 Generic filtering on arbitrary packet data, assisted by syntax to abstract common operations. See
249 .BR tc-u32 (8)
250 for details.
251 .TP
252 matchall
253 Traffic control filter that matches every packet. See
254 .BR tc-matchall (8)
255 for details.
256
257 .SH CLASSLESS QDISCS
258 The classless qdiscs are:
259 .TP
260 choke
261 CHOKe (CHOose and Keep for responsive flows, CHOose and Kill for unresponsive
262 flows) is a classless qdisc designed to both identify and penalize flows that
263 monopolize the queue. CHOKe is a variation of RED, and the configuration is
264 similar to RED.
265 .TP
266 codel
267 CoDel (pronounced "coddle") is an adaptive "no-knobs" active queue management
268 algorithm (AQM) scheme that was developed to address the shortcomings of
269 RED and its variants.
270 .TP
271 [p|b]fifo
272 Simplest usable qdisc, pure First In, First Out behaviour. Limited in
273 packets or in bytes.
274 .TP
275 fq
276 Fair Queue Scheduler realises TCP pacing and scales to millions of concurrent
277 flows per qdisc.
278 .TP
279 fq_codel
280 Fair Queuing Controlled Delay is queuing discipline that combines Fair
281 Queuing with the CoDel AQM scheme. FQ_Codel uses a stochastic model to classify
282 incoming packets into different flows and is used to provide a fair share of the
283 bandwidth to all the flows using the queue. Each such flow is managed by the
284 CoDel queuing discipline. Reordering within a flow is avoided since Codel
285 internally uses a FIFO queue.
286 .TP
287 gred
288 Generalized Random Early Detection combines multiple RED queues in order to
289 achieve multiple drop priorities. This is required to realize Assured
290 Forwarding (RFC 2597).
291 .TP
292 hhf
293 Heavy-Hitter Filter differentiates between small flows and the opposite,
294 heavy-hitters. The goal is to catch the heavy-hitters and move them to a
295 separate queue with less priority so that bulk traffic does not affect the
296 latency of critical traffic.
297 .TP
298 ingress
299 This is a special qdisc as it applies to incoming traffic on an interface, allowing for it to be filtered and policed.
300 .TP
301 mqprio
302 The Multiqueue Priority Qdisc is a simple queuing discipline that allows
303 mapping traffic flows to hardware queue ranges using priorities and a
304 configurable priority to traffic class mapping. A traffic class in this context
305 is a set of contiguous qdisc classes which map 1:1 to a set of hardware exposed
306 queues.
307 .TP
308 multiq
309 Multiqueue is a qdisc optimized for devices with multiple Tx queues. It has
310 been added for hardware that wishes to avoid head-of-line blocking. It will
311 cycle though the bands and verify that the hardware queue associated with the
312 band is not stopped prior to dequeuing a packet.
313 .TP
314 netem
315 Network Emulator is an enhancement of the Linux traffic control facilities that
316 allow to add delay, packet loss, duplication and more other characteristics to
317 packets outgoing from a selected network interface.
318 .TP
319 pfifo_fast
320 Standard qdisc for 'Advanced Router' enabled kernels. Consists of a three-band
321 queue which honors Type of Service flags, as well as the priority that may be
322 assigned to a packet.
323 .TP
324 pie
325 Proportional Integral controller-Enhanced (PIE) is a control theoretic active
326 queue management scheme. It is based on the proportional integral controller but
327 aims to control delay.
328 .TP
329 red
330 Random Early Detection simulates physical congestion by randomly dropping
331 packets when nearing configured bandwidth allocation. Well suited to very
332 large bandwidth applications.
333 .TP
334 rr
335 Round-Robin qdisc with support for multiqueue network devices. Removed from
336 Linux since kernel version 2.6.27.
337 .TP
338 sfb
339 Stochastic Fair Blue is a classless qdisc to manage congestion based on
340 packet loss and link utilization history while trying to prevent
341 non-responsive flows (i.e. flows that do not react to congestion marking
342 or dropped packets) from impacting performance of responsive flows.
343 Unlike RED, where the marking probability has to be configured, BLUE
344 tries to determine the ideal marking probability automatically.
345 .TP
346 sfq
347 Stochastic Fairness Queueing reorders queued traffic so each 'session'
348 gets to send a packet in turn.
349 .TP
350 tbf
351 The Token Bucket Filter is suited for slowing traffic down to a precisely
352 configured rate. Scales well to large bandwidths.
353 .SH CONFIGURING CLASSLESS QDISCS
354 In the absence of classful qdiscs, classless qdiscs can only be attached at
355 the root of a device. Full syntax:
356 .P
357 .B tc qdisc add dev
358 \fIDEV\fR
359 .B root
360 QDISC QDISC-PARAMETERS
361
362 To remove, issue
363 .P
364 .B tc qdisc del dev
365 \fIDEV\fR
366 .B root
367
368 The
369 .B pfifo_fast
370 qdisc is the automatic default in the absence of a configured qdisc.
371
372 .SH CLASSFUL QDISCS
373 The classful qdiscs are:
374 .TP
375 ATM
376 Map flows to virtual circuits of an underlying asynchronous transfer mode
377 device.
378 .TP
379 CBQ
380 Class Based Queueing implements a rich linksharing hierarchy of classes.
381 It contains shaping elements as well as prioritizing capabilities. Shaping is
382 performed using link idle time calculations based on average packet size and
383 underlying link bandwidth. The latter may be ill-defined for some interfaces.
384 .TP
385 DRR
386 The Deficit Round Robin Scheduler is a more flexible replacement for Stochastic
387 Fairness Queuing. Unlike SFQ, there are no built-in queues \-\- you need to add
388 classes and then set up filters to classify packets accordingly. This can be
389 useful e.g. for using RED qdiscs with different settings for particular
390 traffic. There is no default class \-\- if a packet cannot be classified, it is
391 dropped.
392 .TP
393 DSMARK
394 Classify packets based on TOS field, change TOS field of packets based on
395 classification.
396 .TP
397 HFSC
398 Hierarchical Fair Service Curve guarantees precise bandwidth and delay allocation for leaf classes and allocates excess bandwidth fairly. Unlike HTB, it makes use of packet dropping to achieve low delays which interactive sessions benefit from.
399 .TP
400 HTB
401 The Hierarchy Token Bucket implements a rich linksharing hierarchy of
402 classes with an emphasis on conforming to existing practices. HTB facilitates
403 guaranteeing bandwidth to classes, while also allowing specification of upper
404 limits to inter-class sharing. It contains shaping elements, based on TBF and
405 can prioritize classes.
406 .TP
407 PRIO
408 The PRIO qdisc is a non-shaping container for a configurable number of
409 classes which are dequeued in order. This allows for easy prioritization
410 of traffic, where lower classes are only able to send if higher ones have
411 no packets available. To facilitate configuration, Type Of Service bits are
412 honored by default.
413 .TP
414 QFQ
415 Quick Fair Queueing is an O(1) scheduler that provides near-optimal guarantees,
416 and is the first to achieve that goal with a constant cost also with respect to
417 the number of groups and the packet length. The QFQ algorithm has no loops, and
418 uses very simple instructions and data structures that lend themselves very
419 well to a hardware implementation.
420 .SH THEORY OF OPERATION
421 Classes form a tree, where each class has a single parent.
422 A class may have multiple children. Some qdiscs allow for runtime addition
423 of classes (CBQ, HTB) while others (PRIO) are created with a static number of
424 children.
425
426 Qdiscs which allow dynamic addition of classes can have zero or more
427 subclasses to which traffic may be enqueued.
428
429 Furthermore, each class contains a
430 .B leaf qdisc
431 which by default has
432 .B pfifo
433 behaviour, although another qdisc can be attached in place. This qdisc may again
434 contain classes, but each class can have only one leaf qdisc.
435
436 When a packet enters a classful qdisc it can be
437 .B classified
438 to one of the classes within. Three criteria are available, although not all
439 qdiscs will use all three:
440 .TP
441 tc filters
442 If tc filters are attached to a class, they are consulted first
443 for relevant instructions. Filters can match on all fields of a packet header,
444 as well as on the firewall mark applied by ipchains or iptables.
445 .TP
446 Type of Service
447 Some qdiscs have built in rules for classifying packets based on the TOS field.
448 .TP
449 skb->priority
450 Userspace programs can encode a \fIclass-id\fR in the 'skb->priority' field using
451 the SO_PRIORITY option.
452 .P
453 Each node within the tree can have its own filters but higher level filters
454 may also point directly to lower classes.
455
456 If classification did not succeed, packets are enqueued to the leaf qdisc
457 attached to that class. Check qdisc specific manpages for details, however.
458
459 .SH NAMING
460 All qdiscs, classes and filters have IDs, which can either be specified
461 or be automatically assigned.
462
463 IDs consist of a
464 .BR major " number and a " minor
465 number, separated by a colon -
466 .BR major ":" minor "."
467 Both
468 .BR major " and " minor
469 are hexadecimal numbers and are limited to 16 bits. There are two special
470 values: root is signified by
471 .BR major " and " minor
472 of all ones, and unspecified is all zeros.
473
474 .TP
475 QDISCS
476 A qdisc, which potentially can have children, gets assigned a
477 .B major
478 number, called a 'handle', leaving the
479 .B minor
480 number namespace available for classes. The handle is expressed as '10:'.
481 It is customary to explicitly assign a handle to qdiscs expected to have children.
482
483 .TP
484 CLASSES
485 Classes residing under a qdisc share their qdisc
486 .B major
487 number, but each have a separate
488 .B minor
489 number called a 'classid' that has no relation to their
490 parent classes, only to their parent qdisc. The same naming custom as for
491 qdiscs applies.
492
493 .TP
494 FILTERS
495 Filters have a three part ID, which is only needed when using a hashed
496 filter hierarchy.
497
498 .SH PARAMETERS
499 The following parameters are widely used in TC. For other parameters,
500 see the man pages for individual qdiscs.
501
502 .TP
503 RATES
504 Bandwidths or rates.
505 These parameters accept a floating point number, possibly followed by
506 either a unit (both SI and IEC units supported), or a float followed by a '%'
507 character to specify the rate as a percentage of the device's speed
508 (e.g. 5%, 99.5%). Warning: specifying the rate as a percentage means a fraction
509 of the current speed; if the speed changes, the value will not be recalculated.
510 .RS
511 .TP
512 bit or a bare number
513 Bits per second
514 .TP
515 kbit
516 Kilobits per second
517 .TP
518 mbit
519 Megabits per second
520 .TP
521 gbit
522 Gigabits per second
523 .TP
524 tbit
525 Terabits per second
526 .TP
527 bps
528 Bytes per second
529 .TP
530 kbps
531 Kilobytes per second
532 .TP
533 mbps
534 Megabytes per second
535 .TP
536 gbps
537 Gigabytes per second
538 .TP
539 tbps
540 Terabytes per second
541
542 .P
543 To specify in IEC units, replace the SI prefix (k-, m-, g-, t-) with
544 IEC prefix (ki-, mi-, gi- and ti-) respectively.
545
546 .P
547 TC store rates as a 32-bit unsigned integer in bps internally,
548 so we can specify a max rate of 4294967295 bps.
549 .RE
550
551 .TP
552 TIMES
553 Length of time. Can be specified as a floating point number
554 followed by an optional unit:
555 .RS
556 .TP
557 s, sec or secs
558 Whole seconds
559 .TP
560 ms, msec or msecs
561 Milliseconds
562 .TP
563 us, usec, usecs or a bare number
564 Microseconds.
565
566 .P
567 TC defined its own time unit (equal to microsecond) and stores
568 time values as 32-bit unsigned integer, thus we can specify a max time value
569 of 4294967295 usecs.
570 .RE
571
572 .TP
573 SIZES
574 Amounts of data. Can be specified as a floating point number
575 followed by an optional unit:
576 .RS
577 .TP
578 b or a bare number
579 Bytes.
580 .TP
581 kbit
582 Kilobits
583 .TP
584 kb or k
585 Kilobytes
586 .TP
587 mbit
588 Megabits
589 .TP
590 mb or m
591 Megabytes
592 .TP
593 gbit
594 Gigabits
595 .TP
596 gb or g
597 Gigabytes
598
599 .P
600 TC stores sizes internally as 32-bit unsigned integer in byte,
601 so we can specify a max size of 4294967295 bytes.
602 .RE
603
604 .TP
605 VALUES
606 Other values without a unit.
607 These parameters are interpreted as decimal by default, but you can
608 indicate TC to interpret them as octal and hexadecimal by adding a '0'
609 or '0x' prefix respectively.
610
611 .SH TC COMMANDS
612 The following commands are available for qdiscs, classes and filter:
613 .TP
614 add
615 Add a qdisc, class or filter to a node. For all entities, a
616 .B parent
617 must be passed, either by passing its ID or by attaching directly to the root of a device.
618 When creating a qdisc or a filter, it can be named with the
619 .B handle
620 parameter. A class is named with the
621 .B \fBclassid\fR
622 parameter.
623
624 .TP
625 delete
626 A qdisc can be deleted by specifying its handle, which may also be 'root'. All subclasses and their leaf qdiscs
627 are automatically deleted, as well as any filters attached to them.
628
629 .TP
630 change
631 Some entities can be modified 'in place'. Shares the syntax of 'add', with the exception
632 that the handle cannot be changed and neither can the parent. In other words,
633 .B
634 change
635 cannot move a node.
636
637 .TP
638 replace
639 Performs a nearly atomic remove/add on an existing node id. If the node does not exist yet
640 it is created.
641
642 .TP
643 get
644 Displays a single filter given the interface \fIDEV\fR, \fIqdisc-id\fR,
645 \fIpriority\fR, \fIprotocol\fR and \fIfilter-id\fR.
646
647 .TP
648 show
649 Displays all filters attached to the given interface. A valid parent ID must be passed.
650
651 .TP
652 link
653 Only available for qdiscs and performs a replace where the node
654 must exist already.
655
656 .SH MONITOR
657 The\fB\ tc\fR\ utility can monitor events generated by the kernel such as
658 adding/deleting qdiscs, filters or actions, or modifying existing ones.
659
660 The following command is available for\fB\ monitor\fR\ :
661 .TP
662 \fBfile\fR
663 If the file option is given, the \fBtc\fR does not listen to kernel events, but opens
664 the given file and dumps its contents. The file has to be in binary
665 format and contain netlink messages.
666
667 .SH OPTIONS
668
669 .TP
670 .BR "\-b", " \-b filename", " \-batch", " \-batch filename"
671 read commands from provided file or standard input and invoke them.
672 First failure will cause termination of tc.
673
674 .TP
675 .BR "\-force"
676 don't terminate tc on errors in batch mode.
677 If there were any errors during execution of the commands, the application return code will be non zero.
678
679 .TP
680 .BR "\-o" , " \-oneline"
681 output each record on a single line, replacing line feeds
682 with the
683 .B '\e'
684 character. This is convenient when you want to count records
685 with
686 .BR wc (1)
687 or to
688 .BR grep (1)
689 the output.
690
691 .TP
692 .BR "\-n" , " \-net" , " \-netns " <NETNS>
693 switches
694 .B tc
695 to the specified network namespace
696 .IR NETNS .
697 Actually it just simplifies executing of:
698
699 .B ip netns exec
700 .IR NETNS
701 .B tc
702 .RI "[ " OPTIONS " ] " OBJECT " { " COMMAND " | "
703 .BR help " }"
704
705 to
706
707 .B tc
708 .RI "-n[etns] " NETNS " [ " OPTIONS " ] " OBJECT " { " COMMAND " | "
709 .BR help " }"
710
711 .TP
712 .BR "\-N" , " \-Numeric"
713 Print the number of protocol, scope, dsfield, etc directly instead of
714 converting it to human readable name.
715
716 .TP
717 .BR "\-cf" , " \-conf " <FILENAME>
718 specifies path to the config file. This option is used in conjunction with other options (e.g.
719 .BR -nm ")."
720
721 .TP
722 .BR "\-t", " \-timestamp"
723 When\fB\ tc monitor\fR\ runs, print timestamp before the event message in format:
724 Timestamp: <Day> <Month> <DD> <hh:mm:ss> <YYYY> <usecs> usec
725
726 .TP
727 .BR "\-ts", " \-tshort"
728 When\fB\ tc monitor\fR\ runs, prints short timestamp before the event message in format:
729 [<YYYY>-<MM>-<DD>T<hh:mm:ss>.<ms>]
730
731 .SH FORMAT
732 The show command has additional formatting options:
733
734 .TP
735 .BR "\-s" , " \-stats", " \-statistics"
736 output more statistics about packet usage.
737
738 .TP
739 .BR "\-d", " \-details"
740 output more detailed information about rates and cell sizes.
741
742 .TP
743 .BR "\-r", " \-raw"
744 output raw hex values for handles.
745
746 .TP
747 .BR "\-p", " \-pretty"
748 for u32 filter, decode offset and mask values to equivalent filter commands based on TCP/IP.
749 In JSON output, add whitespace to improve readability.
750
751 .TP
752 .BR "\-iec"
753 print rates in IEC units (ie. 1K = 1024).
754
755 .TP
756 .BR "\-g", " \-graph"
757 shows classes as ASCII graph. Prints generic stats info under each class if
758 .BR "-s"
759 option was specified. Classes can be filtered only by
760 .BR "dev"
761 option.
762
763 .TP
764 .BR \-c [ color ][ = { always | auto | never }
765 Configure color output. If parameter is omitted or
766 .BR always ,
767 color output is enabled regardless of stdout state. If parameter is
768 .BR auto ,
769 stdout is checked to be a terminal before enabling color output. If parameter is
770 .BR never ,
771 color output is disabled. If specified multiple times, the last one takes
772 precedence. This flag is ignored if
773 .B \-json
774 is also given.
775
776 .TP
777 .BR "\-j", " \-json"
778 Display results in JSON format.
779
780 .TP
781 .BR "\-nm" , " \-name"
782 resolve class name from
783 .B /etc/iproute2/tc_cls
784 file or from file specified by
785 .B -cf
786 option. This file is just a mapping of
787 .B classid
788 to class name:
789
790 .RS 10
791 # Here is comment
792 .RE
793 .RS 10
794 1:40 voip # Here is another comment
795 .RE
796 .RS 10
797 1:50 web
798 .RE
799 .RS 10
800 1:60 ftp
801 .RE
802 .RS 10
803 1:2 home
804 .RE
805
806 .RS
807 .B tc
808 will not fail if
809 .B -nm
810 was specified without
811 .B -cf
812 option but
813 .B /etc/iproute2/tc_cls
814 file does not exist, which makes it possible to pass
815 .B -nm
816 option for creating
817 .B tc
818 alias.
819 .RE
820
821 .SH "EXAMPLES"
822 .PP
823 tc -g class show dev eth0
824 .RS 4
825 Shows classes as ASCII graph on eth0 interface.
826 .RE
827 .PP
828 tc -g -s class show dev eth0
829 .RS 4
830 Shows classes as ASCII graph with stats info under each class.
831
832 .SH HISTORY
833 .B tc
834 was written by Alexey N. Kuznetsov and added in Linux 2.2.
835 .SH SEE ALSO
836 .BR tc-basic (8),
837 .BR tc-bfifo (8),
838 .BR tc-bpf (8),
839 .BR tc-cake (8),
840 .BR tc-cbq (8),
841 .BR tc-cgroup (8),
842 .BR tc-choke (8),
843 .BR tc-codel (8),
844 .BR tc-drr (8),
845 .BR tc-ematch (8),
846 .BR tc-flow (8),
847 .BR tc-flower (8),
848 .BR tc-fq (8),
849 .BR tc-fq_codel (8),
850 .BR tc-fw (8),
851 .BR tc-hfsc (7),
852 .BR tc-hfsc (8),
853 .BR tc-htb (8),
854 .BR tc-mqprio (8),
855 .BR tc-pfifo (8),
856 .BR tc-pfifo_fast (8),
857 .BR tc-pie (8),
858 .BR tc-red (8),
859 .BR tc-route (8),
860 .BR tc-sfb (8),
861 .BR tc-sfq (8),
862 .BR tc-stab (8),
863 .BR tc-tbf (8),
864 .BR tc-tcindex (8),
865 .BR tc-u32 (8),
866 .br
867 .RB "User documentation at " http://lartc.org/ ", but please direct bugreports and patches to: " <netdev@vger.kernel.org>
868
869 .SH AUTHOR
870 Manpage maintained by bert hubert (ahu@ds9a.nl)