如何在 Linux 中平等限制所有 (*) ip

如何在 Linux 中平等限制所有 (*) ip

我正在使用这个 code.sh 来限制 ip,但我想平等地限制每个人

ip * limit -d 1000kb -u 1000kb 结果:google 1000Kbps,amazon 1000Kbps,任何服务器 ip 1000Kbps

我在 ufw、iptables、google vpc、google search、wondershapper 上进行了搜索

我不明白为什么 Linux 社区如此懒惰,没有创建完整的专业工具,以至于我每次都要搜索谷歌;我从来不需要使用谷歌来学习如何在 Windows 上使用;

如何在 Linux 中通过 IP 进行流量整形?

tun0 是 vm google cloud plataform 中的 eth0,而不是 nic0

#! /bin/bash
NETCARD=tun0
MAXBANDWIDTH=100000

# reinit
tc qdisc del dev $NETCARD root handle 1
tc qdisc add dev $NETCARD root handle 1: htb default 9999

# create the default class
tc class add dev $NETCARD parent 1:0 classid 1:9999 htb rate $(( $MAXBANDWIDTH ))kbit ceil $(( $MAXBANDWIDTH ))kbit burst 5k prio 9999

# control bandwidth per IP
declare -A ipctrl
# define list of IP and bandwidth (in kilo bits per seconds) below
ipctrl[192.168.1.1]="256"
ipctrl[192.168.1.2]="128"
ipctrl[192.168.1.3]="512"
ipctrl[192.168.1.4]="32"

mark=0
for ip in "${!ipctrl[@]}"
do
    mark=$(( mark + 1 ))
    bandwidth=${ipctrl[$ip]}

    # traffic shaping rule
    tc class add dev $NETCARD parent 1:0 classid 1:$mark htb rate $(( $bandwidth ))kbit ceil $(( $bandwidth ))kbit burst 5k prio $mark

    # netfilter packet marking rule
    iptables -t mangle -A INPUT -i $NETCARD -s $ip -j CONNMARK --set-mark $mark

    # filter that bind the two
    tc filter add dev $NETCARD parent 1:0 protocol ip prio $mark handle $mark fw flowid 1:$mark

    echo "IP $ip is attached to mark $mark and limited to $bandwidth kbps"
done

相关内容