| Server IP : 104.21.25.180 / Your IP : 104.23.197.122 Web Server : Apache/2.4.37 System : Linux almalinux.duckdns.org 4.18.0-553.111.1.el8_10.x86_64 #1 SMP Sun Mar 8 20:06:07 EDT 2026 x86_64 User : ricodeal ( 1046) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/libexec/webmin/bind8/ |
Upload File : |
#!/usr/bin/perl
# Re-download the root zone servers
use strict;
use warnings;
no warnings 'redefine';
no warnings 'uninitialized';
our (%text, %in);
require './bind8-lib.pl';
&error_setup($text{'refetch_err'});
&ReadParse();
# Work out the filename
my $zone = &get_zone_name_or_error($in{'zone'}, $in{'view'});
&can_edit_zone($zone) ||
&error($text{'hint_ecannot'});
my $file = $zone->{'file'};
my $rootfile = &make_chroot(&absolute_path($file));
# Try to download the root servers file from
# ftp://rs.internic.net/domain/named.root
&lock_file($rootfile);
my $err = &download_root_zone(&absolute_path($file));
&error($err) if ($err);
&unlock_file($rootfile);
&webmin_log("refetch");
&redirect("");