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

📄 conf_acls.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 global ACLs.#use strict;no strict 'vars';require './b9ddns-lib.pl';my $i = 0;my $conf = '';my @acls = my @vals = ();%access = &get_module_acl();unless ($access{'defaults'}) {	&terror('acls_ecannot');}$conf = &get_config();@acls = ( &find('acl', $conf), { } );&header($text{'acls_title'}, '');print '<hr>';print '<form action=save_acls.cgi>';print '<table border>';print "<tr $tb><td><b>", $text{'acls_name'}, '</b></td>',      '<td><b>', $text{'acls_values'}, "</b></td></tr>\n";for ($i = 0; $i < @acls; $i++) {	print "<tr $cb>\n";	printf '<td valign=top><input name=name_%d size=20 value="%s"></td>',		$i, $acls[$i]->{'value'};	@vals = map { $_->{'name'} } @{ $acls[$i]->{'members'} };	print "<td><textarea rows=2 cols=70 name=values_$i wrap=auto>",		join("\n", @vals), "</textarea></td></tr>\n";	print "<tr $tb><td colspan=2 height=4></td></tr>\n" unless ($i == $#acls);}print '</table>';print '<input type=submit value="', $text{'save'}, "\"></form>\n";print '<hr>';&footer('', $text{'index_return'});exit;

⌨️ 快捷键说明

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