#!/usr/bin/perl # find_free.cgi # Looks for free IP numbers # by Ivan Andrian, <ivan.andrian@elettra.trieste.it>, 11/07/2000 use strict; use warnings; no warnings 'redefine'; no warnings 'uninitialized'; our (%access, %text, %in); require './bind8-lib.pl'; &ReadParse(); my $zone = &get_zone_name_or_error($in{'zone'}, $in{'view'}); my $dom = $zone->{'name'}; my $file = $zone->{'file'}; my $type = $zone->{'type'}; if (!$access{'findfree'}) {&error($text{'findfree_nofind'})}; my $desc = &text('findfree_header', &zone_subhead($zone)); &ui_print_header($desc, &text('findfree_title'), "", undef, undef, undef, undef, &restart_links($zone)); &find_ips($in{'zone'}, $in{'from'}, $in{'to'}, $in{'cf'}); if ($in{'from'} && $in{'to'}) { # Do the search my @allrecs = &read_zone_file($file, $dom); my @recs = grep { ($_->{'type'} eq 'A') || ($_->{'type'} eq 'PTR')} @allrecs; my @gens = grep { $_->{'generate'} } @allrecs; foreach my $g (@gens) { my ($start, $end, $skip); my @gv = @{$g->{'generate'}}; if ($gv[0] =~ /^(\d+)-(\d+)\/(\d+)$/) { $start = $1; $end = $2; $skip = $3; } elsif ($gv[0] =~ /^(\d+)-(\d+)$/) { $start = $1; $end = $2; $skip = 1; } else { next; } for(my $i=$start; $i<=$end; $i+=$skip) { my $lhs = $gv[1]; $lhs =~ s/\$\$/\0/g; $lhs =~ s/\$/$i/g; $lhs =~ s/\0/\$/g; my $lhsfull = $lhs =~ /\.$/ ? $lhs : $dom eq "." ? "$lhs." : "$lhs.$dom"; my $rhs = $gv[3]; $rhs =~ s/\$\$/\0/g; $rhs =~ s/\$/$i/g; $rhs =~ s/\0/\$/g; my $rhsfull = &check_ipaddress($rhs) ? $rhs : $rhs =~ /\.$/ ? $rhs : $dom eq "." ? "$rhs." : "$rhs.$dom"; push(@recs, { 'name' => $lhsfull, 'values' => [ $rhsfull ], 'type' => $gv[2], 'class' => 'IN' }); } } my $freeXXXcount=0; my $freemaccount=0; if (@recs) { @recs = &sort_records(@recs); my %frecs = &build_iprange($in{'from'}, $in{'to'}); for(my $i=0; $i<@recs; $i++) { my $hip; # host IP my $hname; # hostname if ($recs[$i]->{'type'} eq 'A') { $hip=$recs[$i]->{'values'}->[0]; # IP no. in 'values' field $hname=$recs[$i]->{'name'}; # name in 'name' field } else { $hip=&arpa_to_ip($recs[$i]->{'name'}); # IP no. in 'name' field $hname=$recs[$i]->{'values'}->[0]; # name in 'values' field } # print "evaluating ", $hip, " ", $hname, "...<BR>"; #debug if($in{'cf'} & ($hname=~ /^free.*/) & exists $frecs{$hip}) { # 'freeXXX' hostnames are free IP's! # update # print " updating: ",$hip, "... <BR>"; #debug $frecs{$hip}->{'ttl'}=$recs[$i]->{'ttl'}; $frecs{$hip}->{'name'}=$hname; $freeXXXcount++; if($hname=~ /^freemac.*/) {$freemaccount++;} } else { # print " deleting: ",$hip, "... <BR>"; #debug delete $frecs{$hip}; } } # Show a message my @frecs=sort ffree_ip_sort_func values %frecs; print "<b>",&text('findfree_msg', scalar(@frecs)),"\n"; if ($in{'cf'}) { print &text('findfree_msg2', $freeXXXcount, $freemaccount),"\n"; } print "...</b><p>\n"; # Show all the IPs &frecs_table(@frecs); } # if(@recs) } # if(@in >= 3) &ui_print_footer("edit_$type.cgi?zone=$in{'zone'}&view=$in{'view'}", $text{'recs_return'}); # build_iprange(fromIP, toIP) # Returns a list of IP numbers from fromIP to toIP sub build_iprange { $_[0] =~ /^(\d+)\.(\d+)\.(\d+)\.(\d+)/; my @from = ($1, $2, $3, $4); return @from if (@from != 4); #I want a correct IPv4 # $_[1] =~ /^(\d+)\.(\d+)\.(\d+)\.(\d+)/; my @to = ($1, $2, $3, $4); return @to if (@to != 4); for (my $i=3;$i>=0;$i--) { my $e = 0; if ($from[$i] == 0) { $from[$i] = 1; $e++; } if ($to[$i] == 255) { $to[$i] = 254; $e++; } last if ($e); } my %frecs; for (my $byte0=$from[0]; $byte0<=$to[0]; $byte0++) { for (my $byte1=$byte0==$from[0]?$from[1]:1; $byte1<=(($byte0==$to[0]?$to[1]:254)); $byte1++) { for (my $byte2=($byte0==$from[0])&&($byte1==$from[1])?$from[2]:1; $byte2<=(($byte0==$to[0])&&($byte1==$to[1])?$to[2]:254); $byte2++) { for (my $byte3=($byte0==$from[0])&&($byte1==$from[1])&&($byte2==$from[2])?$from[3]:1; $byte3<=(($byte0==$to[0])&&($byte1==$to[1])&&($byte2==$to[2])?$to[3]:254); $byte3++) { $frecs{"$byte0.$byte1.$byte2.$byte3"}->{'ip'}="$byte0.$byte1.$byte2.$byte3"; $frecs{"$byte0.$byte1.$byte2.$byte3"}->{'ttl'}=$text{'default'}; $frecs{"$byte0.$byte1.$byte2.$byte3"}->{'name'}=''; } #for $byte3 } #for $byte2 } #for $byte1 } #for $byte0 return %frecs; } # sub build_iprange # find_ips (zonename, from_ip, to_ip, consider_freeXX_names) # Display a form for searching for free IP nos sub find_ips { print &ui_form_start("find_free.cgi"); print &ui_hidden("zone", $_[0]); print &ui_hidden("view", $in{'view'}); print &ui_table_start($text{'findfree_sopt'}, undef, 2); # Range start print &ui_table_row($text{'findfree_fromip'}, &ui_textbox("from", $_[1], 20)); # Range end print &ui_table_row($text{'findfree_toip'}, &ui_textbox("to", $_[2], 20)); # Handle freeXXX hostnames? print &ui_table_row($text{'findfree_cf'}, &ui_yesno_radio("cf", $_[3])); print &ui_table_end(); print &ui_form_end([ [ undef, $text{'findfree_search'} ] ]); } # frecs_table(array_of_freerecords) sub frecs_table { print &ui_grid_table( [ map { &ui_link("edit_recs.cgi?zone=$in{'zone'}&view=$in{'view'}&type=A&newvalue=$_->{'ip'}", $_->{'ip'}) } @_ ], 4, 100, [ "width=25%", "width=25%", "width=25%", "width=25%" ]); } sub ffree_ip_sort_func { $a->{'ip'} =~ /^(\d+)\.(\d+)\.(\d+)\.(\d+)/; my ($a1, $a2, $a3, $a4) = ($1, $2, $3, $4); $b->{'ip'} =~ /^(\d+)\.(\d+)\.(\d+)\.(\d+)/; return $a1 < $1 ? -1 : $a1 > $1 ? 1 : $a2 < $2 ? -1 : $a2 > $2 ? 1 : $a3 < $3 ? -1 : $a3 > $3 ? 1 : $a4 < $4 ? -1 : $a4 > $4 ? 1 : 0; }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
images | Folder | 0755 |
|
|
lang | Folder | 0755 |
|
|
CHANGELOG | File | 12.67 KB | 0644 |
|
acl_security.pl | File | 10.25 KB | 0755 |
|
backup_config.pl | File | 1.47 KB | 0755 |
|
bind8-lib.pl | File | 115.83 KB | 0755 |
|
cgi_args.pl | File | 1.92 KB | 0755 |
|
check_zone.cgi | File | 1.04 KB | 0755 |
|
close.cgi | File | 342 B | 0755 |
|
conf_acls.cgi | File | 989 B | 0755 |
|
conf_controls.cgi | File | 2.34 KB | 0755 |
|
conf_dnssec.cgi | File | 936 B | 0755 |
|
conf_dnssectools.cgi | File | 2.16 KB | 0755 |
|
conf_files.cgi | File | 1.19 KB | 0755 |
|
conf_forwarding.cgi | File | 1.54 KB | 0755 |
|
conf_keys.cgi | File | 1.07 KB | 0755 |
|
conf_logging.cgi | File | 4.85 KB | 0755 |
|
conf_manual.cgi | File | 1.21 KB | 0755 |
|
conf_misc.cgi | File | 1.95 KB | 0755 |
|
conf_ncheck.cgi | File | 807 B | 0755 |
|
conf_net.cgi | File | 3.49 KB | 0755 |
|
conf_rndc.cgi | File | 1.15 KB | 0755 |
|
conf_servers.cgi | File | 1.8 KB | 0755 |
|
conf_trusted.cgi | File | 2.84 KB | 0755 |
|
conf_zonedef.cgi | File | 4.9 KB | 0755 |
|
config-AlmaLinux-6.0-ALL | File | 989 B | 0644 |
|
config-CentOS-Linux-6.0-7.9 | File | 997 B | 0644 |
|
config-CentOS-Linux-8.0-ALL | File | 989 B | 0644 |
|
config-CentOS-Stream-Linux-8.0-ALL | File | 989 B | 0644 |
|
config-CloudLinux-8.0-ALL | File | 989 B | 0644 |
|
config-Oracle-Linux-8.0-ALL | File | 989 B | 0644 |
|
config-Redhat-Enterprise-Linux-6.0-7.9 | File | 976 B | 0644 |
|
config-Redhat-Enterprise-Linux-8.0-ALL | File | 989 B | 0644 |
|
config-Rocky-Linux-6.0-ALL | File | 989 B | 0644 |
|
config-Scientific-Linux-6.0-ALL | File | 935 B | 0644 |
|
config-aix | File | 717 B | 0644 |
|
config-cobalt-linux | File | 722 B | 0644 |
|
config-coherent-linux | File | 857 B | 0644 |
|
config-corel-linux | File | 722 B | 0644 |
|
config-debian-linux | File | 722 B | 0644 |
|
config-debian-linux-10.0-ALL | File | 991 B | 0644 |
|
config-debian-linux-2.2 | File | 727 B | 0644 |
|
config-debian-linux-3.0 | File | 842 B | 0644 |
|
config-debian-linux-3.1-9.0 | File | 934 B | 0644 |
|
config-freebsd-12.0-ALL | File | 790 B | 0644 |
|
config-freebsd-2.1-2.2 | File | 728 B | 0644 |
|
config-freebsd-3.0 | File | 729 B | 0644 |
|
config-freebsd-3.1-3.5 | File | 722 B | 0644 |
|
config-freebsd-4.0-11.0 | File | 757 B | 0644 |
|
config-generic-linux | File | 750 B | 0644 |
|
config-gentoo-linux | File | 827 B | 0644 |
|
config-hpux | File | 722 B | 0644 |
|
config-irix | File | 722 B | 0644 |
|
config-macos | File | 728 B | 0644 |
|
config-macos-1.3-ALL | File | 789 B | 0644 |
|
config-mandrake-linux | File | 814 B | 0644 |
|
config-mandrake-linux-10.2-ALL | File | 802 B | 0644 |
|
config-msc-linux | File | 788 B | 0644 |
|
config-netbsd | File | 729 B | 0644 |
|
config-open-linux | File | 798 B | 0644 |
|
config-openSUSE-Linux-15.0-ALL | File | 938 B | 0644 |
|
config-openbsd-2.5-3.1 | File | 722 B | 0644 |
|
config-openbsd-3.2-ALL | File | 740 B | 0644 |
|
config-openmamba-linux | File | 798 B | 0644 |
|
config-openserver | File | 722 B | 0644 |
|
config-osf1 | File | 722 B | 0644 |
|
config-pardus-linux | File | 875 B | 0644 |
|
config-redhat-linux-7.0-ALL | File | 989 B | 0644 |
|
config-redhat-linux-ALL-6.0 | File | 997 B | 0644 |
|
config-slackware-linux | File | 722 B | 0644 |
|
config-slackware-linux-8.0-ALL | File | 756 B | 0644 |
|
config-sol-linux | File | 850 B | 0644 |
|
config-solaris | File | 737 B | 0644 |
|
config-solaris-10-ALL | File | 835 B | 0644 |
|
config-solaris-7-9 | File | 725 B | 0644 |
|
config-suse-linux | File | 722 B | 0644 |
|
config-suse-linux-8.2 | File | 882 B | 0644 |
|
config-suse-linux-9.0-9.2 | File | 995 B | 0644 |
|
config-suse-linux-9.3-ALL | File | 1.03 KB | 0644 |
|
config-syno-linux | File | 683 B | 0644 |
|
config-trustix-linux | File | 927 B | 0644 |
|
config-trustix-linux-2.1 | File | 923 B | 0644 |
|
config-trustix-linux-2.2-ALL | File | 939 B | 0644 |
|
config-turbo-linux | File | 722 B | 0644 |
|
config-united-linux | File | 822 B | 0644 |
|
config-unixware | File | 763 B | 0644 |
|
config-windows | File | 1.17 KB | 0644 |
|
config.info | File | 4.02 KB | 0644 |
|
config.info.bg | File | 6.88 KB | 0644 |
|
config.info.ca | File | 4.5 KB | 0644 |
|
config.info.cs | File | 3.34 KB | 0644 |
|
config.info.de | File | 4.6 KB | 0644 |
|
config.info.es | File | 3.33 KB | 0644 |
|
config.info.fa | File | 4.7 KB | 0644 |
|
config.info.fr | File | 4.92 KB | 0644 |
|
config.info.hu | File | 0 B | 0644 |
|
config.info.ja | File | 4.03 KB | 0644 |
|
config.info.ms | File | 1.12 KB | 0644 |
|
config.info.nl | File | 4.1 KB | 0644 |
|
config.info.no | File | 4 KB | 0644 |
|
config.info.pl | File | 4.42 KB | 0644 |
|
config.info.pt_BR | File | 3.86 KB | 0644 |
|
config.info.ru | File | 3.02 KB | 0644 |
|
config.info.sv | File | 1.02 KB | 0644 |
|
config.info.tr | File | 646 B | 0644 |
|
config.info.uk | File | 3.14 KB | 0644 |
|
config.info.zh | File | 750 B | 0644 |
|
config.info.zh_TW | File | 364 B | 0644 |
|
convert_master.cgi | File | 1.02 KB | 0755 |
|
convert_slave.cgi | File | 1.44 KB | 0755 |
|
cpan_modules.pl | File | 143 B | 0644 |
|
create_delegation.cgi | File | 1.77 KB | 0755 |
|
create_forward.cgi | File | 2.09 KB | 0755 |
|
create_hint.cgi | File | 1.47 KB | 0755 |
|
create_master.cgi | File | 5.61 KB | 0755 |
|
create_slave.cgi | File | 4.1 KB | 0755 |
|
create_view.cgi | File | 1.5 KB | 0755 |
|
db.cache | File | 2.44 KB | 0644 |
|
defaultacl | File | 219 B | 0644 |
|
delegation_form.cgi | File | 1.3 KB | 0755 |
|
delete_recs.cgi | File | 2.66 KB | 0755 |
|
delete_view.cgi | File | 2.34 KB | 0755 |
|
delete_zone.cgi | File | 5.3 KB | 0755 |
|
disable_zonedt.cgi | File | 934 B | 0755 |
|
disable_zonekey.cgi | File | 928 B | 0755 |
|
dns_boot.cgi | File | 2.56 KB | 0755 |
|
edit_delegation.cgi | File | 1.11 KB | 0755 |
|
edit_forward.cgi | File | 1.82 KB | 0755 |
|
edit_hint.cgi | File | 1 KB | 0755 |
|
edit_master.cgi | File | 5.75 KB | 0755 |
|
edit_options.cgi | File | 1.62 KB | 0755 |
|
edit_record.cgi | File | 1.13 KB | 0755 |
|
edit_recs.cgi | File | 7.59 KB | 0755 |
|
edit_slave.cgi | File | 3.93 KB | 0755 |
|
edit_soa.cgi | File | 2.51 KB | 0755 |
|
edit_soptions.cgi | File | 2.27 KB | 0755 |
|
edit_stub.cgi | File | 3.93 KB | 0755 |
|
edit_text.cgi | File | 1.26 KB | 0755 |
|
edit_view.cgi | File | 2.12 KB | 0755 |
|
edit_zonedt.cgi | File | 6.52 KB | 0755 |
|
edit_zonekey.cgi | File | 4.13 KB | 0755 |
|
enable_zonedt.cgi | File | 1.12 KB | 0755 |
|
enable_zonekey.cgi | File | 1.42 KB | 0755 |
|
feedback_files.pl | File | 588 B | 0755 |
|
find_free.cgi | File | 5.59 KB | 0755 |
|
find_zones.cgi | File | 3.89 KB | 0755 |
|
fix_trusted.cgi | File | 1 KB | 0755 |
|
forward_form.cgi | File | 1.38 KB | 0755 |
|
free_chooser.cgi | File | 2 KB | 0755 |
|
freeze_zone.cgi | File | 992 B | 0755 |
|
hint_form.cgi | File | 1.79 KB | 0755 |
|
index.cgi | File | 17.51 KB | 0755 |
|
install_check.pl | File | 513 B | 0755 |
|
list_gen.cgi | File | 1.95 KB | 0755 |
|
list_slaves.cgi | File | 3.28 KB | 0755 |
|
log_parser.pl | File | 2.47 KB | 0755 |
|
mass_create.cgi | File | 7.33 KB | 0755 |
|
mass_delete.cgi | File | 3.42 KB | 0755 |
|
mass_form.cgi | File | 1.44 KB | 0755 |
|
mass_rcreate.cgi | File | 3.56 KB | 0755 |
|
mass_rcreate_form.cgi | File | 1.49 KB | 0755 |
|
mass_rdelete.cgi | File | 1.87 KB | 0755 |
|
mass_rdelete_form.cgi | File | 1.3 KB | 0755 |
|
mass_update.cgi | File | 3 KB | 0755 |
|
mass_update_form.cgi | File | 1.07 KB | 0755 |
|
master_form.cgi | File | 3.48 KB | 0755 |
|
module.info | File | 279 B | 0644 |
|
module.info.af | File | 0 B | 0644 |
|
module.info.af.auto | File | 116 B | 0644 |
|
module.info.ar | File | 0 B | 0644 |
|
module.info.ar.auto | File | 152 B | 0644 |
|
module.info.be | File | 0 B | 0644 |
|
module.info.be.auto | File | 173 B | 0644 |
|
module.info.bg | File | 30 B | 0644 |
|
module.info.bg.auto | File | 143 B | 0644 |
|
module.info.ca | File | 106 B | 0644 |
|
module.info.ca.auto | File | 16 B | 0644 |
|
module.info.cs | File | 24 B | 0644 |
|
module.info.cs.auto | File | 105 B | 0644 |
|
module.info.da | File | 0 B | 0644 |
|
module.info.da.auto | File | 122 B | 0644 |
|
module.info.de | File | 113 B | 0644 |
|
module.info.de.auto | File | 15 B | 0644 |
|
module.info.el | File | 0 B | 0644 |
|
module.info.el.auto | File | 199 B | 0644 |
|
module.info.es | File | 29 B | 0644 |
|
module.info.es.auto | File | 90 B | 0644 |
|
module.info.eu | File | 0 B | 0644 |
|
module.info.eu.auto | File | 129 B | 0644 |
|
module.info.fa | File | 0 B | 0644 |
|
module.info.fa.auto | File | 164 B | 0644 |
|
module.info.fi | File | 0 B | 0644 |
|
module.info.fi.auto | File | 129 B | 0644 |
|
module.info.fr | File | 41 B | 0644 |
|
module.info.fr.auto | File | 113 B | 0644 |
|
module.info.he | File | 0 B | 0644 |
|
module.info.he.auto | File | 147 B | 0644 |
|
module.info.hr | File | 0 B | 0644 |
|
module.info.hr.auto | File | 124 B | 0644 |
|
module.info.hu | File | 27 B | 0644 |
|
module.info.hu.auto | File | 125 B | 0644 |
|
module.info.it | File | 0 B | 0644 |
|
module.info.it.auto | File | 107 B | 0644 |
|
module.info.ja | File | 27 B | 0644 |
|
module.info.ja.auto | File | 134 B | 0644 |
|
module.info.ko | File | 25 B | 0644 |
|
module.info.ko.auto | File | 111 B | 0644 |
|
module.info.lt | File | 0 B | 0644 |
|
module.info.lt.auto | File | 128 B | 0644 |
|
module.info.lv | File | 0 B | 0644 |
|
module.info.lv.auto | File | 132 B | 0644 |
|
module.info.ms | File | 110 B | 0644 |
|
module.info.ms.auto | File | 13 B | 0644 |
|
module.info.mt | File | 0 B | 0644 |
|
module.info.mt.auto | File | 114 B | 0644 |
|
module.info.nl | File | 24 B | 0644 |
|
module.info.nl.auto | File | 87 B | 0644 |
|
module.info.no | File | 24 B | 0644 |
|
module.info.no.auto | File | 98 B | 0644 |
|
module.info.pl | File | 96 B | 0644 |
|
module.info.pl.auto | File | 17 B | 0644 |
|
module.info.pt | File | 29 B | 0644 |
|
module.info.pt.auto | File | 101 B | 0644 |
|
module.info.pt_BR | File | 32 B | 0644 |
|
module.info.pt_BR.auto | File | 107 B | 0644 |
|
module.info.ro | File | 0 B | 0644 |
|
module.info.ro.auto | File | 131 B | 0644 |
|
module.info.ru | File | 30 B | 0644 |
|
module.info.ru.auto | File | 167 B | 0644 |
|
module.info.sk | File | 0 B | 0644 |
|
module.info.sk.auto | File | 125 B | 0644 |
|
module.info.sl | File | 0 B | 0644 |
|
module.info.sl.auto | File | 128 B | 0644 |
|
module.info.sv | File | 24 B | 0644 |
|
module.info.sv.auto | File | 93 B | 0644 |
|
module.info.th | File | 0 B | 0644 |
|
module.info.th.auto | File | 218 B | 0644 |
|
module.info.tr | File | 26 B | 0644 |
|
module.info.tr.auto | File | 121 B | 0644 |
|
module.info.uk | File | 0 B | 0644 |
|
module.info.uk.auto | File | 197 B | 0644 |
|
module.info.ur | File | 0 B | 0644 |
|
module.info.ur.auto | File | 193 B | 0644 |
|
module.info.vi | File | 0 B | 0644 |
|
module.info.vi.auto | File | 151 B | 0644 |
|
module.info.zh | File | 27 B | 0644 |
|
module.info.zh.auto | File | 83 B | 0644 |
|
module.info.zh_TW | File | 30 B | 0644 |
|
module.info.zh_TW.auto | File | 89 B | 0644 |
|
move_zone.cgi | File | 1.27 KB | 0755 |
|
old_save_controls.cgi | File | 2.13 KB | 0755 |
|
open.cgi | File | 307 B | 0755 |
|
prefs.info | File | 61 B | 0644 |
|
records-lib.pl | File | 26.64 KB | 0755 |
|
refetch.cgi | File | 705 B | 0755 |
|
resign.pl | File | 2.11 KB | 0755 |
|
resign_zone.cgi | File | 708 B | 0755 |
|
restart.cgi | File | 819 B | 0755 |
|
restart_zone.cgi | File | 655 B | 0755 |
|
save_acls.cgi | File | 1.6 KB | 0755 |
|
save_controls.cgi | File | 2.3 KB | 0755 |
|
save_dnssec.cgi | File | 1.29 KB | 0755 |
|
save_dnssectools.cgi | File | 1.39 KB | 0755 |
|
save_files.cgi | File | 831 B | 0755 |
|
save_forward.cgi | File | 847 B | 0755 |
|
save_forwarding.cgi | File | 1.08 KB | 0755 |
|
save_gen.cgi | File | 3.79 KB | 0755 |
|
save_keys.cgi | File | 1.15 KB | 0755 |
|
save_logging.cgi | File | 2.97 KB | 0755 |
|
save_manual.cgi | File | 774 B | 0755 |
|
save_master.cgi | File | 1.06 KB | 0755 |
|
save_misc.cgi | File | 1.3 KB | 0755 |
|
save_net.cgi | File | 3.16 KB | 0755 |
|
save_record.cgi | File | 23.06 KB | 0755 |
|
save_rndc.cgi | File | 2.93 KB | 0755 |
|
save_servers.cgi | File | 1.73 KB | 0755 |
|
save_slave.cgi | File | 1.6 KB | 0755 |
|
save_soa.cgi | File | 2.58 KB | 0755 |
|
save_text.cgi | File | 1.12 KB | 0755 |
|
save_trusted.cgi | File | 2.76 KB | 0755 |
|
save_view.cgi | File | 1.36 KB | 0755 |
|
save_zonedef.cgi | File | 3.05 KB | 0755 |
|
sign_zone.cgi | File | 770 B | 0755 |
|
slave_add.cgi | File | 4.97 KB | 0755 |
|
slave_delete.cgi | File | 651 B | 0755 |
|
slave_form.cgi | File | 2.16 KB | 0755 |
|
start.cgi | File | 467 B | 0755 |
|
stop.cgi | File | 341 B | 0755 |
|
stub_form.cgi | File | 2.16 KB | 0755 |
|
syslog_logs.pl | File | 708 B | 0755 |
|
system_info.pl | File | 1.11 KB | 0644 |
|
unfreeze_zone.cgi | File | 990 B | 0755 |
|
view_form.cgi | File | 1.11 KB | 0755 |
|
view_text.cgi | File | 1.05 KB | 0755 |
|
whois.cgi | File | 1.14 KB | 0755 |
|
xfer.cgi | File | 1.66 KB | 0755 |
|
zone_dnssecmgt_dt.cgi | File | 1.37 KB | 0755 |
|
zone_dnssecmigrate_dt.cgi | File | 2.32 KB | 0755 |
|