]> johannes.truschnigg.info Git - sqm_lagthrottle/commitdiff
Update implied default config
authorJohannes Truschnigg <johannes@truschnigg.info>
Mon, 21 Mar 2022 17:53:23 +0000 (18:53 +0100)
committerJohannes Truschnigg <johannes@truschnigg.info>
Mon, 21 Mar 2022 17:53:23 +0000 (18:53 +0100)
sqm_lagthrottle.sh

index 62518bf892bb7bcd48fa7d621a37bba7bb4d8785..7c798fe9010f1fa63d89bac3a20ea084d94135f3 100755 (executable)
 
 FUDGE_MS=20.0 # "fudge" factor in msec that yor PING_PEERS are expected to fluctuate in latency under normal conditions
 PING_PEERS='1.1.1.1 8.8.8.8' # space-separated list of peer addresses to ping
-BW_MIN_RX=4000 # your min. acceptable downstream bandwidth to shape to in Kbps
-BW_MAX_RX=30000 # your max. desired downstream bandwidth to shape to in Kbps
-STATS_RX='/sys/class/net/eth1/statistics/rx_bytes' # downstream bandwidth accounting file for your SQM'd interface
-IFACE_RX='ifb4eth1' # interface to apply downstream SQM to
-STATS_TX='/sys/class/net/eth1/statistics/tx_bytes' # upstream bandwidth accounting file for your SQM'd interface (presently not used)
-IFACE_TX='eth1' # interface to apply upstream SQM to (presently not used)
+BW_MIN_RX=4000 # CHANGE THIS - your min. acceptable downstream bandwidth to shape to in Kbps
+BW_MAX_RX=30000 # CHANGE THIS - your max. desired downstream bandwidth to shape to in Kbps
+STATS_RX='/sys/class/net/ifb4eth1/statistics/tx_bytes' # CHANGE THIS - downstream bandwidth accounting file for your SQM'd interface
+IFACE_RX='ifb4eth1' # CHANGE THIS - interface to apply downstream SQM to
+STATS_TX='/sys/class/net/eth1/statistics/tx_bytes' # CHANGE THIS - upstream bandwidth accounting file for your SQM'd interface (presently not used)
+IFACE_TX='eth1' # CHANGE THIS - interface to apply upstream SQM to (presently not used)
 TREND_DECISION="eager" # choose either "eager" or "relaxed" - the latter trades additional CPU load for quicker decision making
 OPTIMIZATION_PREFERENCE="latency" # try to optimize for either "latency" (i.e., minimze it) or increased "bandwidth"