show interface statistics for up interfaces only

From cpwiki.net
Revision as of 07:38, 23 July 2016 by Nighthawk (Talk | contribs)

Jump to: navigation, search
Check Point Profressional Services

gaia

from bash shell

[Expert@chkpfw1:0]# clish -c "show interfaces" | while read LINE; do echo; echo $LINE; clish -c "show interface $LINE statistics" | grep -v ^$; done


this will only work from the BASH shell, NOT csh.

[root@myfw ~]# clish -c "show interfaces" | grep -B 1 "    Up" | grep "Physical Interface" | grep -v -E "loop0|Tunnel" | awk '{print $3}' | while read LINE; do clish -c "show interface $LINE statistics"; done