- CheckMates
- :
- CheckMates Toolbox
- :
- Scripts
- :
- Interface Errors: RX-ERR, RX-DRP, and RX-OVR
Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Mute
- Printer Friendly Page
Interface Errors: RX-ERR, RX-DRP, and RX-OVR
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content


Champion
This oneliner (see spoiler) shows you all interfaces with errors:
- RX-ERR > 0.0%
- RX-OVR > 0.1%
- RX-DRP > 0.1%
Click to Expand
NET_RXERR=`netstat -in |grep -v Iface |awk '{ $wert=sprintf(" %s %.6f", $1, (($5+.000001)/($4+0.000001)*100))} {print $wert}' | grep -v "100.000000" | awk '$2 >.00001 {print $1}' | awk '{L=L $1" "} END {print L}';`; echo;echo "RX-ERR (>0.0%): $NET_RXERR";NET_RXDRP=`netstat -in |grep -v Iface |awk '{ $wert=sprintf(" %s %.6f", $1, (($6+.000001)/($4+0.000001)*100))} {print $wert}' | grep -v "100.000000" | awk '$2 >.1 {print $1}' | awk '{L=L $1" "} END {print L}';`; echo "RX-DRP (>0.1%): $NET_RXDRP";NET_RXOVR=`netstat -in |grep -v Iface |awk '{ $wert=sprintf(" %s %.6f", $1, (($7+.000001)/($4+0.000001)*100))} {print $wert}' | grep -v "100.000000" | awk '$2 >.1 {print $1}' | awk '{L=L $1" "} END {print L}';`; echo "RX-OVR (>0.1%): $NET_RXOVR";
Output:
Or use this tool for much more information on all your gateways :
Easy View Tool - View System Info for All Gateways Simultaneously
➜ CCSM Elite, CCME, CCTE ➜ www.checkpoint.tips
This oneliner (see spoiler) shows you all interfaces with errors:
- RX-ERR > 0.0%
- RX-OVR > 0.1%
- RX-DRP > 0.1%
Output:
Or use this tool for much more information on all your gateways :
Easy View Tool - View System Info for All Gateways Simultaneously
;
Disclaimer: Check Point does not provide maintenance services or technical or customer support for third party content provided on this Site, including in CheckMates Toolbox. See also our Third Party Software Disclaimer.
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Isabel
Explorer
2020-04-15
04:54 AM
