Device-Network-ConfigParser

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "Test::Pod" : "1.41",
            "Test::Pod::Coverage" : "1.08"
         }
      },
      "runtime" : {
         "requires" : {
            "Data::Dumper" : "0",
            "Exporter" : "0",
            "Getopt::Long" : "0",
            "JSON" : "0",
            "Modern::Perl" : "0",
            "Module::Load" : "0",
            "Parse::RecDescent" : "0",
            "Perl6::Slurp" : "0",
            "Pod::Usage" : "0",
            "Scalar::Util" : "0",
            "perl" : "5.006",
            "strict" : "0",
            "warnings" : "0"
         }
      },

META.yml  view on Meta::CPAN

    file: lib/Device/Network/ConfigParser/Linux/NetUtils.pm
    version: '0.006'
  Device::Network::ConfigParser::Linux::iproute2:
    file: lib/Device/Network/ConfigParser/Linux/iproute2.pm
    version: '0.006'
requires:
  Data::Dumper: '0'
  Exporter: '0'
  Getopt::Long: '0'
  JSON: '0'
  Modern::Perl: '0'
  Module::Load: '0'
  Parse::RecDescent: '0'
  Perl6::Slurp: '0'
  Pod::Usage: '0'
  Scalar::Util: '0'
  perl: '5.006'
  strict: '0'
  warnings: '0'
resources:
  bugtracker: https://github.com/gregfoletta/Device-Network-ConfigParser/issues

Makefile.PL  view on Meta::CPAN

    "bin/ncp"
  ],
  "LICENSE" => "perl",
  "MIN_PERL_VERSION" => "5.006",
  "NAME" => "Device::Network::ConfigParser",
  "PREREQ_PM" => {
    "Data::Dumper" => 0,
    "Exporter" => 0,
    "Getopt::Long" => 0,
    "JSON" => 0,
    "Modern::Perl" => 0,
    "Module::Load" => 0,
    "Parse::RecDescent" => 0,
    "Perl6::Slurp" => 0,
    "Pod::Usage" => 0,
    "Scalar::Util" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "TEST_REQUIRES" => {
    "Test::More" => 0

lib/Device/Network/ConfigParser/CheckPoint/Gaia.pm  view on Meta::CPAN

package Device::Network::ConfigParser::CheckPoint::Gaia;
# ABSTRACT: Parse CheckPoint Configuration
our $VERSION = '0.006'; # VERSION

use 5.006;
use strict;
use warnings;
use Modern::Perl;
use Parse::RecDescent;
use Data::Dumper;
use JSON;

use Exporter qw{import};

our @EXPORT_OK = qw{get_parser get_output_drivers parse_config post_process};

=head1 NAME

lib/Device/Network/ConfigParser/Cisco/ASA.pm  view on Meta::CPAN

package Device::Network::ConfigParser::Cisco::ASA;
# ABSTRACT: Parse Cisco ASA Configuration
our $VERSION = '0.006'; # VERSION

use 5.006;
use strict;
use warnings;
use Modern::Perl;
use Parse::RecDescent;
use Data::Dumper;
use JSON;

use Exporter qw{import};

our @EXPORT_OK = qw{get_parser get_output_drivers parse_config post_process};

=head1 NAME

lib/Device/Network/ConfigParser/Linux/NetUtils.pm  view on Meta::CPAN

package Device::Network::ConfigParser::Linux::NetUtils;
# ABSTRACT: Parse the output from net-utils utilities (ifconfig, route, arp, etc)
our $VERSION = '0.006'; # VERSION

use 5.006;
use strict;
use warnings;
use Modern::Perl;
use Parse::RecDescent;
use Data::Dumper;
use JSON;

use Exporter qw{import};

our @EXPORT_OK = qw{get_parser get_output_drivers parse_config post_process};

=head1 NAME

lib/Device/Network/ConfigParser/Linux/iproute2.pm  view on Meta::CPAN

package Device::Network::ConfigParser::Linux::iproute2;
# ABSTRACT: Parse output from utilities associated with the iproute2 package
our $VERSION = '0.006'; # VERSION

use 5.006;
use strict;
use warnings;
use Modern::Perl;
use Parse::RecDescent;
use Data::Dumper;
use JSON;

use Exporter qw{import};

our @EXPORT_OK = qw{get_parser get_output_drivers parse_config post_process};

=head1 NAME

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.812 second using v1.00-cache-2.02-grep-82fe00e-cpan-f5108d614456 )