PHP Classes

PHP Bind Zone File Parser: Parse Bind configuration to extract DNS records

Recommend this page to a friend!
     
  Info   Example   View files Files   Install with Composer Install with Composer   Download Download   Reputation   Support forum   Blog    
Ratings Unique User Downloads Download Rankings
StarStarStarStar 60%Total: 389 All time: 6,664 This week: 62Up
Version License PHP version Categories
bind-zone-parser 1.9GNU Lesser Genera...5.0Networking, PHP 5, Parsers
Description 

Author

This class can parse Bind zone configuration files to extract DNS records.

It takes the name of a Bind 9 DNS server configuration file and extracts the values of several DNS server settings for a zone.

Currently it extracts the values of ORIGIN, RR, SOA and TTL.

Innovation Award
PHP Programming Innovation award nominee
March 2015
Number 8


Prize: One downloadable copy of Komodo IDE
Bind is a very popular software that acts as DNS server.

This class can parse a configuration file of Bind to extract relevant information about the the domains the DNS server is configured to respond.

Manuel Lemos
Picture of Jan Altensen
  Performance   Level  
Name: Jan Altensen <contact>
Classes: 12 packages by
Country: Germany Germany
Innovation award
Innovation award
Nominee: 5x

Example

<?php
use dns\util\ParseZone;
require_once(
'ParseZone.class.php');

$data = file_get_contents('bind9.de.db');

$parser = new ParseZone($data, 'bind9.de.');
$parser->parse();

print_r($parser->getParsedData());


  Files folder image Files (3)  
File Role Description
Plain text file bind9.de.db Example example zone file
Plain text file ParseZone.class.php Class main class
Plain text file test.php Example example

The PHP Classes site has supported package installation using the Composer tool since 2013, as you may verify by reading this instructions page.
Install with Composer Install with Composer
 Version Control Unique User Downloads Download Rankings  
 0%
Total:389
This week:0
All time:6,664
This week:62Up
 User Ratings  
 
 All time
Utility:87%StarStarStarStarStar
Consistency:81%StarStarStarStarStar
Documentation:-
Examples:81%StarStarStarStarStar
Tests:-
Videos:-
Overall:60%StarStarStarStar
Rank:1206