The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

ios get interfaces - Get interfaces info from cisco ios configuration file.

SYNOPSIS

use strict;

use warnings;

use ios_get_interfaces;

my%info = (name => "router_a", showrun_file => "show_running_config.txt", csv=>"router_a.csv");

my$router = ios_get_interfaces->new(\%info);

my$interfaces = $router->get_info();

print @{$interfaces};

$router->make_report();

DESCRIPTION

Get interfaces info from cisco ios configuration file

EXPORT

None by default.

SEE ALSO

AUTHOR

Cladi, <cladi@cpan.org>

COPYRIGHT AND LICENSE

Copyright (C) 2017 by Cladi Di Domenico

This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.10.1 or, at your option, any later version of Perl 5 you may have available.