- or download this
###########################################
# BIND 9 name server configuration file
...
type master;
file "db.127.0.0";
};
- or download this
computer:zonefiles brian$ ls -al ~/zonefiles
total 0
...
-rw-r--r-- 1 brian brian 0 May 15 14:48 db.127.0.0
-rw-r--r-- 1 brian brian 0 May 15 14:48 db.brian.com
-rw-r--r-- 1 brian brian 0 May 15 14:48 db.test.com
- or download this
#!/usr/bin/perl
# Putting all of the zonefiles lised in named.conf into an array
...
foreach my $f (@list) {
print "$f\n";
}
- or download this
computer:tmp brian$ ./brian.pl
db.test.com
...
db.127.0.0
db.brian.com
db.test.com