📄 conf_forwarding.cgi
字号:
#! /usr/bin/perl## B9DDNS - BIND 9 dynamic DNS webmin module.# Copyright (C) 2003 John Horne. <john.horne@plymouth.ac.uk># Copyright (C) 2004 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 forwarding and transfer options.#use strict;no strict 'vars';require './b9ddns-lib.pl';my $conf = my $options = my $members = '';%access = &get_module_acl();unless ($access{'defaults'}) { &terror('forwarding_ecannot');}$conf = &get_config();$options = &find('options', $conf);$members = (defined($options)) ? $options->{'members'} : [ ];&header($text{'forwarding_title'}, '');print '<hr>';print '<form action=save_forwarding.cgi>';print '<table border width=80%>';print "<tr $tb><td><b>", $text{'forwarding_header'}, '</b></td></tr>';print "<tr $cb><td><table width=100%>\n";print '<tr>';print &addr_match_input($text{'forwarding_fwders'}, 'forwarders', $members, 0);print "</tr>\n";print '<tr>';print &choice_input($text{'forwarding_fwd'}, 'forward', $members, 0, $text{'default'}, undef, $text{'yes'}, 'first', $text{'no'}, 'only');print "</tr>\n";print '<tr><td colspan=2><hr></td></tr>';print '<tr>';print &opt_input($text{'forwarding_max_mtti'}, 'max-transfer-time-in', $members, $text{'default'}, 5, $text{'forwarding_minutes'});print "</tr>\n";print '<tr>';print &opt_input($text{'forwarding_max_mtto'}, 'max-transfer-time-out', $members, $text{'default'}, 5, $text{'forwarding_minutes'});print "</tr>\n";print '<tr>';print &opt_input($text{'forwarding_max_miti'}, 'max-transfer-idle-in', $members, $text{'default'}, 5, $text{'forwarding_minutes'});print "</tr>\n";print '<tr>';print &opt_input($text{'forwarding_max_mito'}, 'max-transfer-idle-out', $members, $text{'default'}, 5, $text{'forwarding_minutes'});print "</tr>\n";print '<tr>';print &opt_input($text{'forwarding_in'}, 'transfers-in', $members, $text{'default'}, 5);print "</tr>\n";print '<tr>';print &opt_input($text{'forwarding_out'}, 'transfers-out', $members, $text{'default'}, 5);print "</tr>\n";print '<tr>';print &choice_input($text{'forwarding_format'}, 'transfer-format', $members, 0, $text{'default'}, undef, $text{'forwarding_one'}, 'one-answer', $text{'forwarding_many'}, 'many-answers');print "</tr>\n";print '<tr>';print &choice_input($text{'xfr_provide'}, 'provide-ixfr', $members, 0, $text{'default'}, undef, $text{'yes'}, 'yes', $text{'no'}, 'no');print "</tr>\n";print '<tr>';print &choice_input($text{'xfr_request'}, 'request-ixfr', $members, 0, $text{'default'}, undef, $text{'yes'}, 'yes', $text{'no'}, 'no');print "</tr>\n";print '<tr>';print &addr_match_input($text{'master_transfer'}, 'allow-transfer', $members);print "</tr>\n";print '<tr>';print &choice_input($text{'master_notify'}, 'notify', $members, 0, $text{'default'}, undef, $text{'yes'}, 'yes', "$text{'no'} ", 'no', $text{'Explicit'}, 'explicit');print "</tr>\n";print '<tr>';print &addr_match_input($text{'master_notify2'}, 'also-notify', $members, 0);print "</tr>\n";print '</table></td></tr></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 + -