우분투 20.04에서 대역폭D의 자동 설치를 수행하는 방법

우분투 20.04에서 대역폭D의 자동 설치를 수행하는 방법

자동 설치를 수행하는 방법대역폭DWindows를 피하고 명령줄을 통해 IP와 인터페이스를 모니터링하세요(ubuntu 20.04의 경우).

sudo apt-get install bandwidthd # with what parameters

중요한:

그렇지 않았습니다 help bandwidthd. 유일한 도움:

bandwidthd --help

Usage: bandwidthd [OPTION]

Options:
    -D      Do not fork to background
    -l      List detected devices
    -c filename Alternate configuration file
    --help      Show this help

감사해요

고쳐 쓰다:

해결 방법을 찾았으며 @muru의 제안에 따라 답변으로 게시하고 있습니다. 더 좋은 답변이 있으신 경우 메시지를 남겨주시면 베스트 답변으로 선정해 드리겠습니다.

답변1

해결책:

sudo DEBIAN_FRONTEND=noninteractive apt-get -y install bandwidthd

설치 후 구성 파일을 편집하고 필요한 경우 기본 매개변수를 변경합니다.

# default parameters:
sudo debconf-show bandwidthd
  bandwidthd-pgsql/sensorid:
  bandwidthd/dev: any
  bandwidthd/promisc: false
  bandwidthd/metarefresh:
  bandwidthd/subnet: 169.254.0.0/16, 192.168.1.0/24, 192.168.122.0/24
  bandwidthd/outputcdf: true
  bandwidthd/recovercdf: true

sudo nano /etc/bandwidthd/bandwidthd.conf
# change default parameters. Example:

subnet 192.168.0.0/16
dev "wlp1s0"

# save the changes and...

sudo /etc/init.d/bandwidthd restart

사용 권리:

http://localhost/bandwidthd/

관련 정보