Tc

在 Debian 10 上安裝 Wondershaper

  • October 28, 2020
# apt-get install wondershaper
# wondershaper wlan0 24000 16000

怎麼辦?!

  • 我如何判斷它是否正在執行?
  • 重啟後如何讓它自動啟動?(並配置它。)

我看到的配置文件都不存在(該目錄/etc/conf.d甚至不存在),並且下面沒有任何內容/etc/init.d,我不明白systemd,但它似乎也不存在:

# systemctl start wondershaper
Failed to start wondershaper.service: Unit wondershaper.service not found.

從目前源安裝:

# apt-get purge wondershaper
# cd
# mkdir wondershaper
# git clone https://github.com/magnific0/wondershaper.git
# cd wondershaper
# make install
# vi /etc/systemd/wondershaper.conf
# systemctl enable --now wondershaper.service

在外部(網際網路連接)界面上執行時,我發現內部 SSH 流量滯後,而大文件複製正在進行中。因此我切換到在內部網路上執行,我的感覺是它正在工作。

/etc/systemd/wondershaper.conf

IFACE="br0"

# Download rate in Kbps
DSPEED="1000000"

# Upload rate in Kbps
USPEED="1000000"

引用自:https://unix.stackexchange.com/questions/613664