SQL DjB DNS -hez webes frontend?

Fórumok

ismer valaki webes frontendet az SQL DjB DNS -hez?
Esetleg tudna ajánlani olyan sql -t használó dns-t amihez van és jól szuperál? a mydns-t már néztem.

Hozzászólások

Mi a gondod a mydns-el? A djbdns szintén nem tud notify-t ahogy a bind.

#!/usr/bin/perl
use Net::DNS;
use Data::Dumper;

my $MY_IP = "x.x.x.x"; # your own IP here
my $zone = shift;

die "usage: $0 zone slave [...]\n"
unless defined $zone and @ARGV;

my $res = new Net::DNS::Resolver;
$res->srcaddr($MY_IP);

for my $slave (@ARGV){
my $packet = new Net::DNS::Packet($zone, "SOA", "IN")
or die "new Net::DNS::Packet failed\n";

$packet->header->opcode("NS_NOTIFY_OP");
$packet->header->aa(1);
$packet->header->rd(0);

$res->nameservers($slave);
my $reply = $res->send($packet);
if(defined $reply){
$reply->print;
} else {
warn "\n;; TIMED OUT\n";
}
}

Most mar tud(sz) ;-)

ASK Me No Questions, I'll Tell You No Lies