From ffa2aefd8d750991c96053176fa50209d097533a Mon Sep 17 00:00:00 2001 From: Oliver Gorwits Date: Fri, 19 Oct 2018 15:29:32 +0100 Subject: [PATCH] Revert "#432 fix regexp for arp display - stromsoe" This reverts commit 75507ed521309374febeab868920eb885399121e. --- lib/App/Netdisco/SSHCollector/Platform/ASA.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/App/Netdisco/SSHCollector/Platform/ASA.pm b/lib/App/Netdisco/SSHCollector/Platform/ASA.pm index 0a5911b8..5d637e4d 100644 --- a/lib/App/Netdisco/SSHCollector/Platform/ASA.pm +++ b/lib/App/Netdisco/SSHCollector/Platform/ASA.pm @@ -88,7 +88,7 @@ sub arpnip { my @lines = split(m/\n/, $before); # ifname 192.0.2.1 0011.2233.4455 123 - my $linereg = qr/[A-z0-9\-\.]+\s([0-9\.]+)\s + my $linereg = qr/[A-z0-9\-\.]+\s([A-z0-9\-\.]+)\s ([0-9a-fA-F]{4}\.[0-9a-fA-F]{4}\.[0-9a-fA-F]{4})/x; foreach my $line (@lines) {