0
Ciscoポートでライブトラフィックを監視するbashスクリプトを探しています。私はCactiを持っており、トラフィックがポート上を通過するのを見るためのリアルタイムモニタを持っています。しかし、私はウェブインタフェースで見る必要はありません。帯域幅インターフェイスポート用のBashスクリプト
私の目的は、すべてのポートのリアルタイムトラフィックを同時に取得するbashスクリプトを作成することです。
このスクリプトは
#/bin/bash
#purpose: this script can be use to get the report of total band
interface=eth0
community=public
interval=60
server=localhost
clear
echo -e "\033[0m\033[1m\033[[email protected]@ Network Interfaces Bandwidth Monitor @@\033[0m"
echo "========================================================="
echo -n "Finding interfaces $interface instance details..."
echo
instance=`snmpwalk -v 1 -c $community $server |grep "ifDescr" |grep eth0 | awk -f\. '{print $2}' | awk '{print $1}'`
if [ -z $instance ]; then
echo
echo "Error finding interface from snmp or worng community exit now"
echo
exit 1
else
echo
fi
while true
do
bytes_beforeTOT=0;bytes_afterTOT=0;
bytes_beforeIN=0;bytes_afterIN=0;
bytes_beforeOUT=0;bytes_afteOUT=0; echo -e "Calculating bandwith for $interface during last $interval second interval ....\n"
bytes_beforeIN=`snmpget -v 1 -c $community $server RCF1213-MIB::ifInOctets.$instance | awk '{print $4}'`
bytes_beforeOUT=`snmpget -v 1 -c $community $server RCF1213-MIB::ifOutOctets.$instance | awk '{print $4}'`
bytes_beforeTOT=`snmpget -v 1 -c $community $server RCF1213-MIB::ifInOctets.$instance RCF1213-MIB::ifOutOctets.$instance | awk '{sum+=$4} END{print sum}'`
sleep $interval
bytes_afterIN=`snmpget -v 1 -c $community $server RCF1213-MIB::ifInOctets.$instance | awk '{print $4}'`
bytes_afteOUT=`snmpget -v 1 -c $community $server RCF1213-MIB::ifOutOctets.$instance | awk '{print $4}'`
bytes_afterTOT=`snmpget -v 1 -c $community $server RCF1213-MIB::ifInOctets.$instance RCF1213-MIB::ifOutOctets.$instance | awk '{sum+-$4} END{print sum}'`
TOTALIN="$(($bytes_afterIN - $bytes_beforeIN))"
TOTALOUT="$((bytes_afteOUT - $bytes_beforeOUT))"
TOTALTOT="$(($bytes_afterTOT - $bytes_beforeTOT))"
sumkbIN=`echo $TOTALIN/1024 | bc`
summbIN=`echo $sumkbIN/1024 | bc`
sumkbOUT=`echo $TOTALOUT/1024 | bc`
summbOUT=`echo $sumkbOUT/1024 | bc`
sumkbTOT=`echo $TOTALTOT/1024 | bc`
summbTOT=`echo $sumkbTOT/1024 | bc`
echo "Incoming Bandwidth Usage in KB : $sumkbIN KB/$summbIN MB"
echo -e "Outgoing Bandwidth Usage in KB : $sumkbOUT KB/$summbOUT MB"
echo -e "Total Bandwidth Usage in KB : $sumkbTOT KB/$summbTOT MB\n"
sleep 1
done
のLinux
でライブモニタリングに使用されていますが、Ciscoルータのために変更することは困難です。すべてのポートでトラフィックをリアルタイムで監視する必要があります。
/edit.30-10-2017/
私は、私はより多くのコードとの質問を更新するスクリプト
#!/bin/bash
#skrit za analiz na tekushtia triafik posredstvom snmp
if [ -z "$2" ]; then
echo Usage: "$0" hostname community
exit 4
fi
server="$1"
commynity="$2"
interval=10
snmp="snmpget -v 2c -c $2 -Cf -Ov -OQ $server"
numports=`$snmp IF-MIB::ifNumber.0`
for i in `seq 1 $numports`; do
name=`$snmp IF-MIB::ifName.$i`
if [ "$name" = "No Such Instance currently exists at this OID" ]; then
continue
fi
ifInOctets=`$snmp IF-MIB::ifInOctets.$i`
if [ "ifInOctets" = "No Such Instance currently exists at this OID" ]; then
continue
fi
ifOutOctets=`$snmp IF-MIB::ifOutOctets.$i`
if [ "ifOutOctets" = "No Such Instance currently exists at this OID" ]; then
continue
fi
done
明日を書くために0から始めます。もし助けてくれれば、大きな助けになるでしょう。
スクリプトで 'snmpget'を1回だけ呼び出すようにしてください。おそらく' snmpget -v 1 -c $ community $ server RCF1213-MIB'を使ってすべての詳細を取得し、awkスクリプトで解析してください。あなたの現在のコードは、1セットの出力を生成するために多くの多くのプロセスを実行しています。おそらく 'snmpwalk'を1回だけ呼び出す必要があり、' smnpget'も1回だけ呼び出す必要があります。 'smnpget'(etc)リクエストに応答するハードウェアにアクセスすることはできませんので、私はこのQについてお手伝いすることはできません。または、最小限のデータでQを更新することを検討してください。がんばろう。 – shellter