리눅스 tc 명령어로 아웃바운드 트래픽 제어하기 > 개발

본문 바로가기
사이트 내 전체검색

개발

리눅스 tc 명령어로 아웃바운드 트래픽 제어하기

페이지 정보

profile_image
작성자 관리자 (210.♡.35.28)
댓글 0건 조회 2,267회 작성일 21-02-17 20:49

본문

[code]
#!/bin/bash
#
#  tc uses the following units when passed as a parameter.
#  kbps: Kilobytes per second
#  mbps: Megabytes per second
#  kbit: Kilobits per second
#  mbit: Megabits per second
#  bps: Bytes per second
#      Amounts of data can be specified in:
#      kb or k: Kilobytes
#      mb or m: Megabytes
#      mbit: Megabits
#      kbit: Kilobits
#  To get the byte figure from bits, divide the number by 8 bit
#
TC=/sbin/tc
IF=eth0     # Interface
DNLD=3mbit          # DOWNLOAD Limit
UPLD=3mbit          # UPLOAD Limit
IP=10.101.0.11    # Host IP
#IP=xxx.xxx.xxx.xxx    # Host IP
U32="$TC filter add dev $IF protocol ip parent 1:0 prio 1 u32"

start() {

$TC qdisc add dev $IF root handle 1: htb default 30
$TC class add dev $IF parent 1: classid 1:1 htb rate $DNLD
$TC class add dev $IF parent 1: classid 1:2 htb rate $UPLD
$U32 match ip dst $IP/32 flowid 1:1
$U32 match ip src $IP/32 flowid 1:2

}

stop() {

$TC qdisc del dev $IF root

}

restart() {

stop
sleep 1
start

}

show() {

$TC -s qdisc ls dev $IF

}

case "$1" in

  start)

echo -n "Starting bandwidth shaping: "
start
echo "done"
;;

  stop)

echo -n "Stopping bandwidth shaping: "
stop
echo "done"
;;

  restart)

echo -n "Restarting bandwidth shaping: "
restart
echo "done"
;;

  show)

echo "Bandwidth shaping status for $IF:\n"
show
echo ""
;;

  *)

pwd=$(pwd)
echo "Usage: $(/usr/bin/dirname $pwd)/tc.bash {start|stop|restart|show}"
;;

esac

exit 0
[/code]

주요 설정 부분은
IF : 랜카드 지정 ex) eth0
DNLD : 다운로드 제한 트래픽
UPLD : 업로드 제한 트래픽
IP : IF에 설정된 IP 주소, VM 일 경우 내부의 IP

실행방법 - 위 스크립트를 tc.sh 로 저장하고 실행권한을 준 후에
# tc.sh start
# tc.sh stop
# tc.sh restart


## 참고
tc 는 서버에서 나가는(outbound) 트래픽만 제한이 가능하고 서버로 들어가는(inbound) 트래픽은 제어하지 않는다.
https://kldp.org/node/59454

https://dejavuqa.tistory.com/307
https://tldp.org/HOWTO/html_single/Traffic-Control-HOWTO/


## 다른 버전의 문서는 아래에 있다.
https://www.baragi.net/bbs/board.php?bo_table=server&wr_id=8592

추천0

댓글목록

등록된 댓글이 없습니다.

Total 386건 6 페이지
  • RSS
개발 목록
번호 제목 조회 추천 날짜
2861898002-27
2851622002-26
2841852002-26
2832307002-25
열람중2268002-17
2812215002-17
2802303001-14
2792000011-07
2781748010-07
2772029010-07
2762397010-06
2752308010-06
2742150009-27
2732560009-07
2721844009-06
2712184006-30
2702519006-30
2692784006-29
2683376006-29
2671980006-22

검색


사이트 정보

Copyright © Baragi.Net. All rights reserved.