バックアップしたシステムデータを、別サーバに転送していたら
サーバ管理会社から「帯域使いすぎ」って連絡が来たので
転送スピードの制限が出来ないか調査を行った。
CBQでポート毎の設定が出来るとのことで採用
CentOSには、元々インストールされているので
設定を行う
設定の反映
[root@www root]# cp /usr/share/doc/iproute-2.6.18/examples/cbq.init-v0.7.3 /etc/init.d/cbq.init
[root@www ]# chmod 755 /etc/init.d/cbq.init
[root@www ]# /sbin/chkconfig –add cbq.init
[root@www ]# /sbin/chkconfig –list cbq.init
cbq.init 0:off 1:off 2:on 3:on 4:on 5:on 6:off
設定を行う
/etc/sysconfig/cbq
へ移動
cbq-0000.example
は不要なので削除
FTP帯域制御
[root@www ]# vi /etc/vsftpd/vsftpd.conf
—————————————————————
pasv_enable=YES
pasv_min_port=4096
pasv_max_port=4127
—————————————————————
[root@www cbq]# vi cbq-101.ftp
—————————————————————
DEVICE=eth0,100Mbit
RATE=10Mbit
WEIGHT=1Mbit
PRIO=4
RULE=192.168.0.10:20, <- サーバのIPアドレスを設定する
RULE=192.168.0.10:4096/0xffe0, <- サーバのIPアドレスを設定する
—————————————————————
HTTP帯域制御
[root@www ]# vi cbq-100.http
—————————————————————
DEVICE=eth0,100Mbit
RATE=5Mbit
WEIGHT=500Kbit
PRIO=5
RULE=192.168.0.10:80, <- サーバのIPアドレスを設定する
—————————————————————
設定が完了したので、反映してみる
[root@www ]# /etc/rc.d/init.d/cbq.init compile
—————————————————————
find: warning: you have specified the -maxdepth option after a non-option argument (, but options are not positional (-maxdepth affects tests specified before it as well as those specified after it). Please specify options before other arguments.
find: warning: you have specified the -maxdepth option after a non-option argument (, but options are not positional (-maxdepth affects tests specified before it as well as those specified after it). Please specify options before other arguments.
/sbin/tc qdisc del dev eth0 root
/sbin/tc qdisc add dev eth0 root handle 1 cbq bandwidth 10Mbit avpkt 3000 cell 8
/sbin/tc class change dev eth0 root cbq weight 1Mbit allot 1514
**CBQ: class ID of cbq-0000.example must be in range <0002-FFFF>!
/sbin/tc qdisc del dev lo root
/sbin/tc qdisc del dev eth0 root
/sbin/tc qdisc del dev eth1 root
—————————————————————
find: warning: you have specified the -maxdepth option after a non-option argument (, but options are not positional (-maxdepth affects tests specified before it as well as those specified after it). Please specify options before other arguments.
って、エラーが出るので
—————————————————————
CLASSLIST=`find $1 \( -type f -or -type l \) -name ‘cbq-*’ \
-not -name ‘*~’ -maxdepth 1 -printf "%f\n"| sort`
—————————————————————
を
—————————————————————
CLASSLIST=`find $1 -maxdepth 1 \( -type f -or -type l \) -name ‘cbq-*’ \
-not -name ‘*~’ -printf "%f\n"| sort`
—————————————————————
—————————————————————
DEVFIELDS=`find $1 \( -type f -or -type l \) -name ‘cbq-*’ \
-not -name ‘*~’ -maxdepth 1| xargs sed -n ‘s/#.*//; \
—————————————————————
を
—————————————————————
DEVFIELDS=`find $1 -maxdepth 1 \( -type f -or -type l \) -name ‘cbq-*’ \
-not -name ‘*~’ | xargs sed -n ‘s/#.*//; \
—————————————————————
に修正する
再度設定の反映
[root@www ]# /etc/rc.d/init.d/cbq.init compile
—————————————————————
/sbin/tc qdisc del dev eth0 root
/sbin/tc qdisc add dev eth0 root handle 1 cbq bandwidth 100Mbit avpkt 3000 cell 8
/sbin/tc class add dev eth0 parent 1: classid 1:100 cbq bandwidth 100Mbit rate 5Mbit weight 500Kbit prio 5 allot 1514 cell 8 maxburst 20 avpkt 3000 bounded
/sbin/tc qdisc add dev eth0 parent 1:100 handle 100 tbf rate 5Mbit buffer 10Kb/8 limit 15Kb mtu 1500
/sbin/tc filter add dev eth0 parent 1:0 protocol ip prio 100 u32 match ip src 119.18.217.140 match ip sport 80 0xffff classid 1:100
/sbin/tc class add dev eth0 parent 1: classid 1:101 cbq bandwidth 100Mbit rate 10Mbit weight 1Mbit prio 4 allot 1514 cell 8 maxburst 20 avpkt 3000 bounded
/sbin/tc qdisc add dev eth0 parent 1:101 handle 101 tbf rate 10Mbit buffer 10Kb/8 limit 15Kb mtu 1500
/sbin/tc filter add dev eth0 parent 1:0 protocol ip prio 100 u32 match ip src 218.228.66.78 match ip sport 20 0xffff classid 1:101
/sbin/tc filter add dev eth0 parent 1:0 protocol ip prio 100 u32 match ip src 218.228.66.78 match ip sport 4096 0xffe0 classid 1:101
—————————————————————
問題なさそうなので開始
[root@www ]# /etc/rc.d/init.d/cbq.init start
NEGiES等のツールを使って、転送速度を確認して設定した値になっているか確認しましょう。