tc指定IP地址限速

Posted mrwuzs

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了tc指定IP地址限速相关的知识,希望对你有一定的参考价值。

[root@localhost ~]# vim delay.sh 
#!/bin/bash
interface=ens32
ip=36.112.131.4
delay=500ms
loss=30%
tc qdisc add dev $interface root handle 1: prio
tc filter add dev $interface parent 1:0 protocol ip prio 1 u32 match ip dst $ip flowid 2:1
tc qdisc add dev $interface parent 1:1 handle 2: netem delay $delay   loss $loss

上面的脚本实现的是访问36.112.131.4,延时500ms,丢包30%
技术图片
访问其他网段,正常延迟
技术图片
取消限速后
tc qdisc del dev ens32 root
技术图片







以上是关于tc指定IP地址限速的主要内容,如果未能解决你的问题,请参考以下文章

tc限速-网卡限速

tc限速-端口限速

linux tc 限速

tc限速

TC模块限速实例

使用iptables和tc对端口限速