Skip to content

Commit

Permalink
2020.08.09-20:28
Browse files Browse the repository at this point in the history
  • Loading branch information
slankdev committed Aug 9, 2020
1 parent 9f26086 commit 765de31
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions misc/linux.md
Original file line number Diff line number Diff line change
Expand Up @@ -721,6 +721,19 @@ Name: SEG6
...(snip)...
```

tc (traffic control)
- pfifo: per-Packet FIFO
- bfifo: per-Byte FIFO
- sfq: Stochastic Fairness Queuing
- tbf: Token Bucket Filter
- netem: Network Emulator (Delay, Loss, etc.)
- fq: Fair Queue Packet Scheduling
```
tc qdisc show dev eth0
tc qdisc del dev eth0 root
tc qdisc add dev eth0 root tbf limit 1Mb buffer 200Kb rate 1Mbps
```

## ethtool

```
Expand Down

0 comments on commit 765de31

Please sign in to comment.