Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: DNS::ZoneFile^H^H^H^HParse

by simonflk (Pilgrim)
on Jun 20, 2003 at 16:38 UTC ( [id://267643]=note: print w/replies, xml ) Need Help??


in reply to DNS::ZoneFile

You could try DNS::ZoneParse:

#!/usr/bin/perl -w use strict; use DNS::ZoneParse; my $zone = DNS::ZoneParse->new("../named.master.conf/_dnsmaster"); print $zone->output();

Update: Missed the question -- This won't parse the named.conf file. Looks like BIND::Conf_Parser should do what you want

-- simonflk

Replies are listed 'Best First'.
Re: Re: DNS::ZoneFile^H^H^H^HParse
by naChoZ (Curate) on Jun 21, 2003 at 03:06 UTC
    I gave that one a quick spin. But the one that I actually got working pretty easily is Unix::Conf::Bind8.

    For possible future super searchers, this is all it took:

    #!/usr/bin/perl -w use strict; use Unix::Conf::Bind8; my $namedconf='/path_to/named.conf'; my ($obj, $conf); $conf = Unix::Conf::Bind8->new_conf ( FILE => $namedconf, SECURE_OPEN => 0 ) or $conf->die ('could not open \'named.conf\':' . $!); $obj = $conf->get_zone ('example.com') or $obj->die ("couldn't get zone `example.com'"); print "\n" . $obj->file . "\n";

    ~~
    naChoZ

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://267643]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others contemplating the Monastery: (2)
As of 2024-04-20 05:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found