Forrest logo
back to context overview

tc

List of commands for tc:

  • tc:tldr:07418 tc: Add normal distributed network delay to outbound packages.
    $ tc qdisc add dev ${eth0} root netem delay ${mean_delay_ms}ms ${delay_std_ms}ms
    try on your machine
    explain this command
  • tc:tldr:0abd4 tc: Show active traffic control policies.
    $ tc qdisc show dev ${eth0}
    try on your machine
    explain this command
  • tc:tldr:98664 tc: Add constant network delay to outbound packages.
    $ tc qdisc add dev ${eth0} root netem delay ${delay_in_milliseconds}ms
    try on your machine
    explain this command
  • tc:tldr:98987 tc: Limit bandwidth, burst rate and max latency.
    $ tc qdisc add dev eth0 root tbf rate ${max_bandwidth_mb}mbit burst ${max_burst_rate_kb}kbit latency ${max_latency_before_drop_ms}ms
    try on your machine
    explain this command
  • tc:tldr:ad703 tc: Delete all traffic control rules.
    $ tc qdisc del dev ${eth0}
    try on your machine
    explain this command
  • tc:tldr:eb73c tc: Change traffic control rule.
    $ tc qdisc change dev ${eth0} root netem ${policy} ${policy_parameters}
    try on your machine
    explain this command
  • tc:tldr:fc158 tc: Add package corruption/loss/duplication to a portion of packages.
    $ tc qdisc add dev ${eth0} root netem ${select} ${effect_percentage}%
    try on your machine
    explain this command
back to context overview