인터페이스에서 pps를 계산할 수 있는 작은 bash 스크립트를 만들었습니다. 들어오는 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 ")
누군가 나를 도와주세요. 티아
답변1
TBPS
두 개의 변수 및 을 설정한 RBPS
다음 TKBPS
및 을 참조합니다 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)