From 3c1f09138dd90de1790472a52006b7e3b4203dfd Mon Sep 17 00:00:00 2001 From: Dobrica Pavlinusic Date: Wed, 20 Jun 2018 10:31:36 +0200 Subject: [PATCH] how blocked port state as B --- syslog-count-link.pl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/syslog-count-link.pl b/syslog-count-link.pl index 04e8d42..c78ee40 100755 --- a/syslog-count-link.pl +++ b/syslog-count-link.pl @@ -98,9 +98,9 @@ while(<>) { if ( m/(\S+)\s%LINK-[IW]-(\w+):\s*(\w+)/ ) { my ($host,$state,$port) = ($1,$2,$3); stat_host_port( $host, $port, substr($state,0,1) ); - } elsif ( m/(\S+)\s%STP-W-PORTSTATUS:\s([\w\/]+): STP status (\w+)/ ) { - my ($host,$port,$state) = ($1,$2,$3); - stat_host_port( $host, $port, '-' ); + } elsif ( m/(\S+)\s%STP-W-PORTSTATUS:\s([\w\/]+)(?: of instance \d+)?: STP status (\w+)/ ) { + my ($host,$port,$state) = ($1,$2,substr($3,0,1) ); + stat_host_port( $host, $port, $state =~ m/f/i ? '-' : $state ); ## Dell new -- 2.20.1