⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 hint_form.cgi

📁 BIND 9 dynamic DNS webmin module. This module supports both static and dynamic zones, and IPv4 and I
💻 CGI
字号:
#! /usr/bin/perl##    B9DDNS - BIND 9 dynamic DNS webmin module.#    Copyright (C) 2003 John Horne. <john.horne@plymouth.ac.uk>##    This program is free software; you can redistribute it and/or modify#    it under the terms of the GNU General Public License as published by#    the Free Software Foundation; either version 2 of the License, or#    (at your option) any later version.##    This program is distributed in the hope that it will be useful,#    but WITHOUT ANY WARRANTY; without even the implied warranty of#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the#    GNU General Public License for more details.##    You should have received a copy of the GNU General Public License#    along with this program; if not, write to the Free Software#    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.### Display options for creating a new root/hint zone.#use strict;no strict 'vars';require './b9ddns-lib.pl';my $conf = my $view = my $zone = my $type = my $file = '';my @views = my @view_zones = my @zones = ();my %view = my %hashint = ();%access = &get_module_acl();unless ($access{'master'}) {	&terror('hcreate_ecannot');}if ($access{'ro'}) {	&terror('master_ero');}$conf = &get_config();@views = &find('view', $conf);foreach $view (@views) {	@view_zones = &find('zone', $view->{'members'});	map { $view{$_} = $view } @view_zones;	push(@zones, @view_zones);}push(@zones, &find('zone', $conf));foreach $zone (@zones) {	$type = &find_value('type', $zone->{'members'});	if ($type eq 'hint') {		$file = &find_value('file', $zone->{'members'});		$hashint{$view{$zone}}++;	}}&header($text{'hcreate_title'}, '');print '<hr>';print $text{'hint_desc1'}, '<p>';print '<form action="create_hint.cgi"><table>';print '<tr><td><b>', $text{'hcreate_file'}, '</b></td>';print '<td><input name=file size=30 value="', $file, '"> ',	&file_chooser_button('file'), '</td></tr>';if (@views) {	print '<tr><td><b>', $text{'mcreate_view'}, '</b></td>';	print '<td colspan=3><select name=view>';	foreach $view (@views) {		unless ($hashint{$view}) {			printf "<option value=%d>%s\n",				$view->{'index'}, $view->{'value'};		}	}	print '</select></td></tr>';}print "</table><p>\n";print '<input type=submit value="', $text{'create'}, '"></form>';print '<hr>';&footer('', $text{'index_return'});exit;

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -