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
- iproute2
- Network simulation
- Wireshark
- pcap
- tcpdump
- scapy
- tcpreplay - Pcap editing and replaying utilities
- WireMock - flexible, open source API mocking
- tc (Traffic Control) - iproute2 패키지의 일부.