我制作了一个小的 bash 脚本,通过它可以计算来自接口的 pps。一旦传入的 pps 达到所需的限制,它就会执行命令。
我在运行脚本时遇到错误有人可以帮助我吗
这是脚本
#!/bin/bash
INTERVAL="1" # update interval in seconds
LIMIT="3000" # Limit in KB/S
URL1="http://1.1.1.1/abcd.php"
IFS=( ens3 ) # Interface names
while true
do
for i in "${IFS[@]}"
do
R1=$(cat /sys/class/net/$i/statistics/rx_packets)
T1=$(cat /sys/class/net/$i/statistics/tx_packets)
sleep $INTERVAL
R2=$(cat /sys/class/net/$i/statistics/rx_packets)
T2=$(cat /sys/class/net/$i/statistics/tx_packets)
TBPS=$(expr $T2 - $T1)
RBPS=$(expr $R2 - $R1)
echo "Incoming $i: $RKBPS pps || Outgoing $i: $TKBPS pps"
if (( $RKBPS > $LIMIT )); then
# Incoming Limit Exceeded
#bash $URL1
#sleep 10
curl $URL1
sleep 320
fi
done
done
我收到的错误如下
Incoming ens3: pps || Outgoing ens3: pps
./s.sh: line 22: ((: > 3000 : syntax error: operand expected (error token is "> 3000 ")
Incoming ens3: pps || Outgoing ens3: pps
./s.sh: line 22: ((: > 3000 : syntax error: operand expected (error token is "> 3000 ")
Incoming ens3: pps || Outgoing ens3: pps
./s.sh: line 22: ((: > 3000 : syntax error: operand expected (error token is "> 3000 ")
Incoming ens3: pps || Outgoing ens3: pps
./s.sh: line 22: ((: > 3000 : syntax error: operand expected (error token is "> 3000 ")
Incoming ens3: pps || Outgoing ens3: pps
./s.sh: line 22: ((: > 3000 : syntax error: operand expected (error token is "> 3000 ")
Incoming ens3: pps || Outgoing ens3: pps
./s.sh: line 22: ((: > 3000 : syntax error: operand expected (error token is "> 3000 ")
Incoming ens3: pps || Outgoing ens3: pps
./s.sh: line 22: ((: > 3000 : syntax error: operand expected (error token is "> 3000 ")
Incoming ens3: pps || Outgoing ens3: pps
./s.sh: line 22: ((: > 3000 : syntax error: operand expected (error token is "> 3000 ")
Incoming ens3: pps || Outgoing ens3: pps
./s.sh: line 22: ((: > 3000 : syntax error: operand expected (error token is "> 3000 ")
有人可以帮帮我吗。 TIA
答案1
您正在设置两个变量TBPS
and RBPS
,但随后引用TKBPS
and RKBPS
。
您还应该在语句sleep
外面添加一个简要说明if
,否则它将消耗大量的 CPU,因为当值不超过时它将处于紧密循环中。
答案2
而不是if
这个:
if (( $RKBPS > $LIMIT )); then
应该:
if [ "$RKBPS" -gt "$LIMIT" ]; then
这是一种非常奇怪的塑造流量的方法。也许您可以将一些流量整形器实现为软件。
此外,您从中获得的变量rx_packets
是关于每秒数据包,而不是每秒字节数。你应该使用rx_bytes
您还忘记在之前添加此内容if
(以千字节为单位转换字节):
TKBPS=$(expr $TBPS / 1024)
RKBPS=$(expr $RBPS / 1024)