diff --git a/Changes b/Changes index 8c791aaa..83a982dc 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,9 @@ +2.038005 - 2018-01-05 + + [BUG FIXES] + + * Fix for PaloAlto sshcolletor module (P. Soppe) + 2.038004 - 2018-01-05 [ENHANCEMENTS] diff --git a/lib/App/Netdisco/SSHCollector/Platform/PaloAlto.pm b/lib/App/Netdisco/SSHCollector/Platform/PaloAlto.pm index 28eec1a5..481a00b9 100644 --- a/lib/App/Netdisco/SSHCollector/Platform/PaloAlto.pm +++ b/lib/App/Netdisco/SSHCollector/Platform/PaloAlto.pm @@ -45,9 +45,9 @@ sub arpnip{ my $prompt = qr/> \r?$/; ($pos, $error, $match, $before, $after) = $expect->expect(20, -re, $prompt); - $expect->send("set cli pager off\n"); + $expect->send("set cli pager off\r\n"); ($pos, $error, $match, $before, $after) = $expect->expect(10, -re, $prompt); - $expect->send("show arp all\n"); + $expect->send("show arp all\r\n"); ($pos, $error, $match, $before, $after) = $expect->expect(10, -re, $prompt); my @arpentries;