我在使用时对“字节”和“位”的使用感到困惑linux tc
linux tc-tbf说它使用'字节'
tbf - 令牌桶过滤器
概要
tc qdisc ... tbf 速率突发字节/单元(延迟毫秒 | 限制字节)[ mpu 字节 [峰值速率 mtu 字节/单元]。突发也称为缓冲区和最大突发。mtu 也称为 minburst。
但我发现它使用“位”。它使用一个小写字母“b”
nimdrak@nimdrak-VirtualBox:~/custom/simple_experiment/link_capacity$
sudo tc -s -s -d c ls dev s2-eth3
class htb 1:1 root prio 0 quantum 200000 rate 200000Kbit ceil 200000Kbit
linklayer ethernet burst 65000b/1 mpu 0b overhead 0b cburst 65000b/1 mpu 0b
overhead 0b level 0
Sent 2265264968 bytes 37732 pkt (dropped 0, overlimits 0 requeues 0)
rate 0bit 0pps backlog 0b 0p requeues 0
lended: 37732 borrowed: 0 giants: 0
tokens: 3098 ctokens: 3098
我认为 linux tc 使用 'b, bit' 作为标准单位,因为它在终端显示 'b'。
但我不确定。
我如何确定字节和位之间的正确性?
太感谢了!