|
Bind::Zone::Record - Record of a Label in a DNS Zone |
Bind::Zone::Record - Record of a Label in a DNS Zone
use DNS::Zone::Record;
my $record = new DNS::Zone::Record($ttl_number, $type_string, $data_string);
$record->dump(); $record->debug();
This class represents a record in the domain name service (DNS).
A record has a time-to-live (TTL) value, a type (e.g. 'IN A')
and some type-secific data (e.g. '123.4.5.6'). You can dump()
the zone using a standard format and you can use debug() to get
an output from Data::Dumper that shows the object in detail.
Copyright (C)2001-2003 Andy Wolf. All rights reserved.
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Please address bug reports and comments to: zonemaster@users.sourceforge.net
the DNS::Zone manpage, the DNS::Zone::Label manpage, the DNS::Zone::File manpage
|
Bind::Zone::Record - Record of a Label in a DNS Zone |