lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame^] | 1 | ############################################################################### |
| 2 | # |
| 3 | # ClassID <-> Name Translation Table |
| 4 | # |
| 5 | # This file can be used to assign names to classids for easier reference |
| 6 | # in all libnl tools. |
| 7 | # |
| 8 | # Format: |
| 9 | # <MAJ:> <NAME> # qdisc definition |
| 10 | # <MAJ:MIN> <NAME> # class deifnition |
| 11 | # <NAME:MIN> <NAME> # class definition referencing an |
| 12 | # existing qdisc definition. |
| 13 | # |
| 14 | # Example: |
| 15 | # 1: top # top -> 1:0 |
| 16 | # top:1 interactive # interactive -> 1:1 |
| 17 | # top:2 www # www -> 1:2 |
| 18 | # top:3 bulk # bulk -> 1:3 |
| 19 | # 2:1 test_class # test_class -> 2:1 |
| 20 | # |
| 21 | # Illegal Example: |
| 22 | # 30:1 classD |
| 23 | # classD:2 invalidClass # classD refers to a class, not a qdisc |
| 24 | # |
| 25 | ############################################################################### |
| 26 | |
| 27 | # <CLASSID> <NAME> |
| 28 | |
| 29 | # Reserved default classids |
| 30 | 0:0 none |
| 31 | ffff:ffff root |
| 32 | ffff:fff1 ingress |
| 33 | |
| 34 | # |
| 35 | # List your classid definitions here: |
| 36 | # |
| 37 | |
| 38 | |
| 39 | |
| 40 | ############################################################################### |
| 41 | # List of auto-generated classids |
| 42 | # |
| 43 | # DO NOT ADD CLASSID DEFINITIONS BELOW THIS LINE |
| 44 | # |
| 45 | # <CLASSID> <NAME> |