Skip to content

Iproute2:tc

tc - show / manipulate traffic control settings

DESCRIPTION

Tc is used to configure Traffic Control in the Linux kernel.

Examples

# 지연 추가 (Add network delay)
sudo tc qdisc add dev eth0 root netem delay 100ms

# 패킷 손실 시뮬레이션 (Simulate packet loss)
sudo tc qdisc add dev eth0 root netem loss 5%

# 대역폭 제한 (Limit bandwidth)
sudo tc qdisc add dev eth0 root tbf rate 1mbit burst 32kbit latency 400ms

See also

Favorite site