Net-DHCP-Windows-Netsh-Parse/Net-DHCP-Windows-Netsh-Parse
Zane C. B-H 349586d14e now recognizes ranges, add git ignore, minor fix to parse.t, and bump to 0.1.0 2019-10-20 03:53:56 -05:00
..
lib/Net/DHCP/Windows/Netsh now recognizes ranges, add git ignore, minor fix to parse.t, and bump to 0.1.0 2019-10-20 03:53:56 -05:00
t now recognizes ranges, add git ignore, minor fix to parse.t, and bump to 0.1.0 2019-10-20 03:53:56 -05:00
.gitignore now recognizes ranges, add git ignore, minor fix to parse.t, and bump to 0.1.0 2019-10-20 03:53:56 -05:00
Changes now recognizes ranges, add git ignore, minor fix to parse.t, and bump to 0.1.0 2019-10-20 03:53:56 -05:00
DHCP Options.md figure out what the most common options are 2019-10-02 04:33:08 -05:00
MANIFEST add initial files 2019-10-01 22:52:06 -05:00
Makefile.PL add hash_ref fetching and more documentation 2019-10-14 03:29:21 -05:00
README ready to release... 2019-10-14 03:41:01 -05:00
ignore.txt add initial files 2019-10-01 22:52:06 -05:00

README

Net-DHCP-Windows-Netsh-Parse

Parses the output from 'netsh dhcp server dump'

    use Net::DHCP::Windows::Netsh::Parse;

    my $parser=Net::DHCP::Windows::Netsh::Parse->new;
    
    eval{
        $parser->parse( $dump );
    };
    if ( $@ ){
        print "It failed with... ".$@."\n";
    }
    
    # no white space
    my $json=$parser->json(0);
    
    # now with useful white space
    $json=$parser->json(0);

INSTALLATION

To install this module, run the following commands:

	perl Makefile.PL
	make
	make test
	make install

SUPPORT AND DOCUMENTATION

After installing, you can find documentation for this module with the
perldoc command.

    perldoc Net::DHCP::Windows::Netsh::Parse

You can also look for information at:

    RT, CPAN's request tracker (report bugs here)
        https://rt.cpan.org/NoAuth/Bugs.html?Dist=Net-DHCP-Windows-Netsh-Parse

    AnnoCPAN, Annotated CPAN documentation
        http://annocpan.org/dist/Net-DHCP-Windows-Netsh-Parse

    CPAN Ratings
        https://cpanratings.perl.org/d/Net-DHCP-Windows-Netsh-Parse

    Search CPAN
        https://metacpan.org/release/Net-DHCP-Windows-Netsh-Parse


LICENSE AND COPYRIGHT

This software is Copyright (c) 2019 by Zane C. Bowers-Hadley.

This is free software, licensed under:

  The Artistic License 2.0 (GPL Compatible)