2 ###############################################################################
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2013 Alexander Marx <amarx@ipfire.org> #
7 # This program is free software: you can redistribute it and/or modify #
8 # it under the terms of the GNU General Public License as published by #
9 # the Free Software Foundation, either version 3 of the License, or #
10 # (at your option) any later version. #
12 # This program is distributed in the hope that it will be useful, #
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15 # GNU General Public License for more details. #
17 # You should have received a copy of the GNU General Public License #
18 # along with this program. If not, see <http://www.gnu.org/licenses/>. #
20 ###############################################################################
25 use feature
'unicode_strings';
27 no warnings
'uninitialized';
29 # enable only the following on debugging purpose
31 #use CGI::Carp 'fatalsToBrowser';
33 require '/var/ipfire/general-functions.pl';
34 require "${General::swroot}/lang.pl";
35 require "${General::swroot}/header.pl";
36 require "/usr/lib/firewall/firewall-lib.pl";
38 unless (-d
"${General::swroot}/firewall") { system("mkdir ${General::swroot}/firewall"); }
39 unless (-e
"${General::swroot}/firewall/settings") { system("touch ${General::swroot}/firewall/settings"); }
40 unless (-e
"${General::swroot}/firewall/config") { system("touch ${General::swroot}/firewall/config"); }
41 unless (-e
"${General::swroot}/firewall/input") { system("touch ${General::swroot}/firewall/input"); }
42 unless (-e
"${General::swroot}/firewall/outgoing") { system("touch ${General::swroot}/firewall/outgoing"); }
46 my %defaultNetworks=();
50 my %customnetworks=();
52 my %customservicegrp=();
58 my %configoutgoingfw=();
70 my @PROTOCOLS = ("TCP", "UDP", "ICMP", "IGMP", "AH", "ESP", "GRE","IPv6","IPIP");
73 my $confignet = "${General::swroot}/fwhosts/customnetworks";
74 my $confighost = "${General::swroot}/fwhosts/customhosts";
75 my $configgrp = "${General::swroot}/fwhosts/customgroups";
76 my $configsrv = "${General::swroot}/fwhosts/customservices";
77 my $configsrvgrp = "${General::swroot}/fwhosts/customservicegrp";
78 my $configccdnet = "${General::swroot}/ovpn/ccd.conf";
79 my $configccdhost = "${General::swroot}/ovpn/ovpnconfig";
80 my $configipsec = "${General::swroot}/vpn/config";
81 my $configipsecrw = "${General::swroot}/vpn/settings";
82 my $configfwdfw = "${General::swroot}/firewall/config";
83 my $configinput = "${General::swroot}/firewall/input";
84 my $configoutgoing = "${General::swroot}/firewall/outgoing";
85 my $configovpn = "${General::swroot}/ovpn/settings";
86 my $fwoptions = "${General::swroot}/optionsfw/settings";
87 my $ifacesettings = "${General::swroot}/ethernet/settings";
90 my $ipgrp="${General::swroot}/outgoing/groups";
94 &General
::readhash
("${General::swroot}/firewall/settings", \
%fwdfwsettings);
95 &General
::readhash
("${General::swroot}/main/settings", \
%mainsettings);
96 &General
::readhash
("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \
%color);
97 &General
::readhash
($fwoptions, \
%optionsfw);
98 &General
::readhash
($ifacesettings, \
%ifaces);
99 &General
::readhash
("$configovpn", \
%ovpnsettings);
100 &General
::readhash
("$configipsecrw", \
%ipsecsettings);
101 &General
::readhasharray
("$configipsec", \
%ipsecconf);
102 &Header
::showhttpheaders
();
103 &Header
::getcgihash
(\
%fwdfwsettings);
104 &Header
::openpage
($Lang::tr
{'fwdfw menu'}, 1, '');
105 &Header
::openbigbox
('100%', 'center',$errormessage);
106 #### JAVA SCRIPT ####
109 var PROTOCOLS_WITH_PORTS = ["TCP", "UDP"];
111 var update_protocol = function() {
112 var protocol = \$("#protocol").val();
114 if (protocol === undefined)
117 // Check if a template is/should be used.
118 if (protocol === "template") {
119 \$("#PROTOCOL_TEMPLATE").show();
121 \$("#PROTOCOL_TEMPLATE").hide();
124 // Check if we are dealing with a protocol, that knows ports.
125 if (\$.inArray(protocol, PROTOCOLS_WITH_PORTS) >= 0) {
126 \$("#PROTOCOL_PORTS").show();
128 \$("#PROTOCOL_PORTS").hide();
132 if (protocol === "ICMP") {
133 \$("#PROTOCOL_ICMP_TYPES").show();
135 \$("#PROTOCOL_ICMP_TYPES").hide();
139 \$(document).ready(function() {
140 \$("#protocol").change(update_protocol);
143 // Show/Hide elements when NAT checkbox is checked.
144 if (\$("#USE_NAT").attr("checked")) {
145 \$("#actions").hide();
150 // Show NAT area when "use nat" checkbox is clicked
151 \$("#USE_NAT").change(function() {
153 \$("#actions").toggle();
157 if(!\$("#USE_TIME_CONSTRAINTS").attr("checked")) {
158 \$("#TIME_CONSTRAINTS").hide();
160 \$("#USE_TIME_CONSTRAINTS").change(function() {
161 \$("#TIME_CONSTRAINTS").toggle();
164 // Automatically select radio buttons when corresponding
165 // dropdown menu changes.
166 \$("select").change(function() {
167 var id = \$(this).attr("name");
168 \$('#' + id).prop("checked", true);
176 if ($fwdfwsettings{'ACTION'} eq 'saverule')
178 &General
::readhasharray
("$configfwdfw", \
%configfwdfw);
179 &General
::readhasharray
("$configinput", \
%configinputfw);
180 &General
::readhasharray
("$configoutgoing", \
%configoutgoingfw);
181 #Set Variables according to the JQuery code in protocol section
182 if ($fwdfwsettings{'PROT'} eq 'TCP' || $fwdfwsettings{'PROT'} eq 'UDP')
184 if ($fwdfwsettings{'SRC_PORT'} ne '')
186 $fwdfwsettings{'USE_SRC_PORT'} = 'ON';
188 if ($fwdfwsettings{'TGT_PORT'} ne '')
190 $fwdfwsettings{'USESRV'} = 'ON';
191 $fwdfwsettings{'grp3'} = 'TGT_PORT';
194 if ($fwdfwsettings{'PROT'} eq 'template')
196 $fwdfwsettings{'USESRV'} = 'ON';
198 $errormessage=&checksource
;
199 if(!$errormessage){&checktarget
;}
200 if(!$errormessage){&checkrule
;}
202 #check if manual ip (source) is orange network
203 if ($fwdfwsettings{'grp1'} eq 'src_addr'){
204 my ($sip,$scidr) = split("/",$fwdfwsettings{$fwdfwsettings{'grp1'}});
205 if ( &General
::IpInSubnet
($sip,$netsettings{'ORANGE_ADDRESS'},$netsettings{'ORANGE_NETMASK'})){
210 if( ($fwdfwsettings{$fwdfwsettings{'grp1'}} eq 'ORANGE' || $checkorange eq 'on') && $fwdfwsettings{'grp2'} eq 'ipfire'){
211 $errormessage.=$Lang::tr
{'fwdfw useless rule'}."<br>";
213 #check if we try to break rules
214 if( $fwdfwsettings{'grp1'} eq 'ipfire_src' && $fwdfwsettings{'grp2'} eq 'ipfire'){
215 $errormessage=$Lang::tr
{'fwdfw err same'};
218 if($fwdfwsettings{'grp2'} eq 'ipfire' && $fwdfwsettings{$fwdfwsettings{'grp1'}} ne 'ORANGE'){
219 $fwdfwsettings{'config'}=$configinput;
220 $fwdfwsettings{'chain'} = 'INPUTFW';
221 my $maxkey=&General
::findhasharraykey
(\
%configinputfw);
222 #check if we have an identical rule already
223 if($fwdfwsettings{'oldrulenumber'} eq $fwdfwsettings{'rulepos'}){
224 foreach my $key (sort keys %configinputfw){
225 if ( "$fwdfwsettings{'RULE_ACTION'},$fwdfwsettings{'ACTIVE'},$fwdfwsettings{'grp1'},$fwdfwsettings{$fwdfwsettings{'grp1'}},$fwdfwsettings{'grp2'},$fwdfwsettings{$fwdfwsettings{'grp2'}},$fwdfwsettings{'USE_SRC_PORT'},$fwdfwsettings{'PROT'},$fwdfwsettings{'ICMP_TYPES'},$fwdfwsettings{'SRC_PORT'},$fwdfwsettings{'USESRV'},$fwdfwsettings{'TGT_PROT'},$fwdfwsettings{'ICMP_TGT'},$fwdfwsettings{'grp3'},$fwdfwsettings{$fwdfwsettings{'grp3'}},$fwdfwsettings{'LOG'},$fwdfwsettings{'TIME'},$fwdfwsettings{'TIME_MON'},$fwdfwsettings{'TIME_TUE'},$fwdfwsettings{'TIME_WED'},$fwdfwsettings{'TIME_THU'},$fwdfwsettings{'TIME_FRI'},$fwdfwsettings{'TIME_SAT'},$fwdfwsettings{'TIME_SUN'},$fwdfwsettings{'TIME_FROM'},$fwdfwsettings{'TIME_TO'},$fwdfwsettings{'USE_NAT'},$fwdfwsettings{$fwdfwsettings{'nat'}},$fwdfwsettings{'dnatport'},$fwdfwsettings{'nat'}"
226 eq "$configinputfw{$key}[0],$configinputfw{$key}[2],$configinputfw{$key}[3],$configinputfw{$key}[4],$configinputfw{$key}[5],$configinputfw{$key}[6],$configinputfw{$key}[7],$configinputfw{$key}[8],$configinputfw{$key}[9],$configinputfw{$key}[10],$configinputfw{$key}[11],$configinputfw{$key}[12],$configinputfw{$key}[13],$configinputfw{$key}[14],$configinputfw{$key}[15],$configinputfw{$key}[17],$configinputfw{$key}[18],$configinputfw{$key}[19],$configinputfw{$key}[20],$configinputfw{$key}[21],$configinputfw{$key}[22],$configinputfw{$key}[23],$configinputfw{$key}[24],$configinputfw{$key}[25],$configinputfw{$key}[26],$configinputfw{$key}[27],$configinputfw{$key}[28],$configinputfw{$key}[29],$configinputfw{$key}[30],$configinputfw{$key}[31]"){
227 $errormessage.=$Lang::tr
{'fwdfw err ruleexists'};
228 if($fwdfwsettings{'oldruleremark'} ne $fwdfwsettings{'ruleremark'} && $fwdfwsettings{'updatefwrule'} eq 'on' && $fwdfwsettings{'ruleremark'} ne '' && !&validremark
($fwdfwsettings{'ruleremark'})){
229 $errormessage=$Lang::tr
{'fwdfw err remark'}."<br>";
231 if($fwdfwsettings{'oldruleremark'} ne $fwdfwsettings{'ruleremark'} && $fwdfwsettings{'updatefwrule'} eq 'on' && $fwdfwsettings{'ruleremark'} ne '' && &validremark
($fwdfwsettings{'ruleremark'})){
234 if ($fwdfwsettings{'oldruleremark'} eq $fwdfwsettings{'ruleremark'}){
235 $fwdfwsettings{'nosave'} = 'on';
240 #check Rulepos on new Rule
241 if($fwdfwsettings{'rulepos'} > 0 && !$fwdfwsettings{'oldrulenumber'}){
242 $fwdfwsettings{'oldrulenumber'}=$maxkey;
243 foreach my $key (sort keys %configinputfw){
244 if ( "$fwdfwsettings{'RULE_ACTION'},$fwdfwsettings{'ACTIVE'},$fwdfwsettings{'grp1'},$fwdfwsettings{$fwdfwsettings{'grp1'}},$fwdfwsettings{'grp2'},$fwdfwsettings{$fwdfwsettings{'grp2'}},$fwdfwsettings{'USE_SRC_PORT'},$fwdfwsettings{'PROT'},$fwdfwsettings{'ICMP_TYPES'},$fwdfwsettings{'SRC_PORT'},$fwdfwsettings{'USESRV'},$fwdfwsettings{'TGT_PROT'},$fwdfwsettings{'ICMP_TGT'},$fwdfwsettings{'grp3'},$fwdfwsettings{$fwdfwsettings{'grp3'}},$fwdfwsettings{'LOG'},$fwdfwsettings{'TIME'},$fwdfwsettings{'TIME_MON'},$fwdfwsettings{'TIME_TUE'},$fwdfwsettings{'TIME_WED'},$fwdfwsettings{'TIME_THU'},$fwdfwsettings{'TIME_FRI'},$fwdfwsettings{'TIME_SAT'},$fwdfwsettings{'TIME_SUN'},$fwdfwsettings{'TIME_FROM'},$fwdfwsettings{'TIME_TO'},$fwdfwsettings{'USE_NAT'},$fwdfwsettings{$fwdfwsettings{'nat'}},$fwdfwsettings{'dnatport'},$fwdfwsettings{'nat'}"
245 eq "$configinputfw{$key}[0],$configinputfw{$key}[2],$configinputfw{$key}[3],$configinputfw{$key}[4],$configinputfw{$key}[5],$configinputfw{$key}[6],$configinputfw{$key}[7],$configinputfw{$key}[8],$configinputfw{$key}[9],$configinputfw{$key}[10],$configinputfw{$key}[11],$configinputfw{$key}[12],$configinputfw{$key}[13],$configinputfw{$key}[14],$configinputfw{$key}[15],$configinputfw{$key}[17],$configinputfw{$key}[18],$configinputfw{$key}[19],$configinputfw{$key}[20],$configinputfw{$key}[21],$configinputfw{$key}[22],$configinputfw{$key}[23],$configinputfw{$key}[24],$configinputfw{$key}[25],$configinputfw{$key}[26],$configinputfw{$key}[27],$configinputfw{$key}[28],$configinputfw{$key}[29],$configinputfw{$key}[30],$configinputfw{$key}[31]"){
246 $errormessage.=$Lang::tr
{'fwdfw err ruleexists'};
250 #check if we just close a rule
251 if( $fwdfwsettings{'oldgrp1a'} eq $fwdfwsettings{'grp1'} && $fwdfwsettings{'oldgrp1b'} eq $fwdfwsettings{$fwdfwsettings{'grp1'}} && $fwdfwsettings{'oldgrp2a'} eq $fwdfwsettings{'grp2'} && $fwdfwsettings{'oldgrp2b'} eq $fwdfwsettings{$fwdfwsettings{'grp2'}} && $fwdfwsettings{'oldgrp3a'} eq $fwdfwsettings{'grp3'} && $fwdfwsettings{'oldgrp3b'} eq $fwdfwsettings{$fwdfwsettings{'grp3'}} && $fwdfwsettings{'oldusesrv'} eq $fwdfwsettings{'USESRV'} && $fwdfwsettings{'oldruleremark'} eq $fwdfwsettings{'ruleremark'} && $fwdfwsettings{'oldruletype'} eq $fwdfwsettings{'chain'}) {
252 if($fwdfwsettings{'nosave'} eq 'on' && $fwdfwsettings{'updatefwrule'} eq 'on'){
254 $fwdfwsettings{'nosave2'} = 'on';
258 if($fwdfwsettings{'nosave2'} ne 'on'){
259 &saverule
(\
%configinputfw,$configinput);
262 }elsif($fwdfwsettings{'grp1'} eq 'ipfire_src' ){
264 $fwdfwsettings{'config'}=$configoutgoing;
265 $fwdfwsettings{'chain'} = 'OUTGOINGFW';
266 my $maxkey=&General
::findhasharraykey
(\
%configoutgoingfw);
267 if($fwdfwsettings{'oldrulenumber'} eq $fwdfwsettings{'rulepos'}){
268 foreach my $key (sort keys %configoutgoingfw){
269 if ( "$fwdfwsettings{'RULE_ACTION'},$fwdfwsettings{'ACTIVE'},$fwdfwsettings{'grp1'},$fwdfwsettings{$fwdfwsettings{'grp1'}},$fwdfwsettings{'grp2'},$fwdfwsettings{$fwdfwsettings{'grp2'}},$fwdfwsettings{'USE_SRC_PORT'},$fwdfwsettings{'PROT'},$fwdfwsettings{'ICMP_TYPES'},$fwdfwsettings{'SRC_PORT'},$fwdfwsettings{'USESRV'},$fwdfwsettings{'TGT_PROT'},$fwdfwsettings{'ICMP_TGT'},$fwdfwsettings{'grp3'},$fwdfwsettings{$fwdfwsettings{'grp3'}},$fwdfwsettings{'LOG'},$fwdfwsettings{'TIME'},$fwdfwsettings{'TIME_MON'},$fwdfwsettings{'TIME_TUE'},$fwdfwsettings{'TIME_WED'},$fwdfwsettings{'TIME_THU'},$fwdfwsettings{'TIME_FRI'},$fwdfwsettings{'TIME_SAT'},$fwdfwsettings{'TIME_SUN'},$fwdfwsettings{'TIME_FROM'},$fwdfwsettings{'TIME_TO'},$fwdfwsettings{'USE_NAT'},$fwdfwsettings{$fwdfwsettings{'nat'}},$fwdfwsettings{'dnatport'},$fwdfwsettings{'nat'}"
270 eq "$configoutgoingfw{$key}[0],$configoutgoingfw{$key}[2],$configoutgoingfw{$key}[3],$configoutgoingfw{$key}[4],$configoutgoingfw{$key}[5],$configoutgoingfw{$key}[6],$configoutgoingfw{$key}[7],$configoutgoingfw{$key}[8],$configoutgoingfw{$key}[9],$configoutgoingfw{$key}[10],$configoutgoingfw{$key}[11],$configoutgoingfw{$key}[12],$configoutgoingfw{$key}[13],$configoutgoingfw{$key}[14],$configoutgoingfw{$key}[15],$configoutgoingfw{$key}[17],$configoutgoingfw{$key}[18],$configoutgoingfw{$key}[19],$configoutgoingfw{$key}[20],$configoutgoingfw{$key}[21],$configoutgoingfw{$key}[22],$configoutgoingfw{$key}[23],$configoutgoingfw{$key}[24],$configoutgoingfw{$key}[25],$configoutgoingfw{$key}[26],$configoutgoingfw{$key}[27],$configoutgoingfw{$key}[28],$configoutgoingfw{$key}[29],$configoutgoingfw{$key}[30],$configoutgoingfw{$key}[31]"){
271 $errormessage.=$Lang::tr
{'fwdfw err ruleexists'};
272 if($fwdfwsettings{'oldruleremark'} ne $fwdfwsettings{'ruleremark'} && $fwdfwsettings{'updatefwrule'} eq 'on' && $fwdfwsettings{'ruleremark'} ne '' && !&validremark
($fwdfwsettings{'ruleremark'})){
273 $errormessage=$Lang::tr
{'fwdfw err remark'}."<br>";
275 if($fwdfwsettings{'oldruleremark'} ne $fwdfwsettings{'ruleremark'} && $fwdfwsettings{'updatefwrule'} eq 'on' && $fwdfwsettings{'ruleremark'} ne '' && &validremark
($fwdfwsettings{'ruleremark'})){
278 if ($fwdfwsettings{'oldruleremark'} eq $fwdfwsettings{'ruleremark'}){
279 $fwdfwsettings{'nosave'} = 'on';
284 #check Rulepos on new Rule
285 if($fwdfwsettings{'rulepos'} > 0 && !$fwdfwsettings{'oldrulenumber'}){
286 $fwdfwsettings{'oldrulenumber'}=$maxkey;
287 foreach my $key (sort keys %configoutgoingfw){
288 if ( "$fwdfwsettings{'RULE_ACTION'},$fwdfwsettings{'ACTIVE'},$fwdfwsettings{'grp1'},$fwdfwsettings{$fwdfwsettings{'grp1'}},$fwdfwsettings{'grp2'},$fwdfwsettings{$fwdfwsettings{'grp2'}},$fwdfwsettings{'USE_SRC_PORT'},$fwdfwsettings{'PROT'},$fwdfwsettings{'ICMP_TYPES'},$fwdfwsettings{'SRC_PORT'},$fwdfwsettings{'USESRV'},$fwdfwsettings{'TGT_PROT'},$fwdfwsettings{'ICMP_TGT'},$fwdfwsettings{'grp3'},$fwdfwsettings{$fwdfwsettings{'grp3'}},$fwdfwsettings{'LOG'},$fwdfwsettings{'TIME'},$fwdfwsettings{'TIME_MON'},$fwdfwsettings{'TIME_TUE'},$fwdfwsettings{'TIME_WED'},$fwdfwsettings{'TIME_THU'},$fwdfwsettings{'TIME_FRI'},$fwdfwsettings{'TIME_SAT'},$fwdfwsettings{'TIME_SUN'},$fwdfwsettings{'TIME_FROM'},$fwdfwsettings{'TIME_TO'},$fwdfwsettings{'USE_NAT'},$fwdfwsettings{$fwdfwsettings{'nat'}},$fwdfwsettings{'dnatport'},$fwdfwsettings{'nat'}"
289 eq "$configoutgoingfw{$key}[0],$configoutgoingfw{$key}[2],$configoutgoingfw{$key}[3],$configoutgoingfw{$key}[4],$configoutgoingfw{$key}[5],$configoutgoingfw{$key}[6],$configoutgoingfw{$key}[7],$configoutgoingfw{$key}[8],$configoutgoingfw{$key}[9],$configoutgoingfw{$key}[10],$configoutgoingfw{$key}[11],$configoutgoingfw{$key}[12],$configoutgoingfw{$key}[13],$configoutgoingfw{$key}[14],$configoutgoingfw{$key}[15],$configoutgoingfw{$key}[17],$configoutgoingfw{$key}[18],$configoutgoingfw{$key}[19],$configoutgoingfw{$key}[20],$configoutgoingfw{$key}[21],$configoutgoingfw{$key}[22],$configoutgoingfw{$key}[23],$configoutgoingfw{$key}[24],$configoutgoingfw{$key}[25],$configoutgoingfw{$key}[26],$configoutgoingfw{$key}[27],$configoutgoingfw{$key}[28],$configoutgoingfw{$key}[29],$configoutgoingfw{$key}[30],$configoutgoingfw{$key}[31]"){
290 $errormessage.=$Lang::tr
{'fwdfw err ruleexists'};
294 #check if we just close a rule
295 if( $fwdfwsettings{'oldgrp1a'} eq $fwdfwsettings{'grp1'} && $fwdfwsettings{'oldgrp1b'} eq $fwdfwsettings{$fwdfwsettings{'grp1'}} && $fwdfwsettings{'oldgrp2a'} eq $fwdfwsettings{'grp2'} && $fwdfwsettings{'oldgrp2b'} eq $fwdfwsettings{$fwdfwsettings{'grp2'}} && $fwdfwsettings{'oldgrp3a'} eq $fwdfwsettings{'grp3'} && $fwdfwsettings{'oldgrp3b'} eq $fwdfwsettings{$fwdfwsettings{'grp3'}} && $fwdfwsettings{'oldusesrv'} eq $fwdfwsettings{'USESRV'} && $fwdfwsettings{'oldruleremark'} eq $fwdfwsettings{'ruleremark'} && $fwdfwsettings{'oldruletype'} eq $fwdfwsettings{'chain'}) {
296 if($fwdfwsettings{'nosave'} eq 'on' && $fwdfwsettings{'updatefwrule'} eq 'on'){
297 $fwdfwsettings{'nosave2'} = 'on';
303 if ($fwdfwsettings{'nosave2'} ne 'on'){
304 &saverule
(\
%configoutgoingfw,$configoutgoing);
309 $fwdfwsettings{'config'}=$configfwdfw;
310 $fwdfwsettings{'chain'} = 'FORWARDFW';
311 my $maxkey=&General
::findhasharraykey
(\
%configfwdfw);
312 if($fwdfwsettings{'oldrulenumber'} eq $fwdfwsettings{'rulepos'}){
313 #check if we have an identical rule already
314 foreach my $key (sort keys %configfwdfw){
315 if ( "$fwdfwsettings{'RULE_ACTION'},$fwdfwsettings{'ACTIVE'},$fwdfwsettings{'grp1'},$fwdfwsettings{$fwdfwsettings{'grp1'}},$fwdfwsettings{'grp2'},$fwdfwsettings{$fwdfwsettings{'grp2'}},$fwdfwsettings{'USE_SRC_PORT'},$fwdfwsettings{'PROT'},$fwdfwsettings{'ICMP_TYPES'},$fwdfwsettings{'SRC_PORT'},$fwdfwsettings{'USESRV'},$fwdfwsettings{'TGT_PROT'},$fwdfwsettings{'ICMP_TGT'},$fwdfwsettings{'grp3'},$fwdfwsettings{$fwdfwsettings{'grp3'}},$fwdfwsettings{'TIME'},$fwdfwsettings{'TIME_MON'},$fwdfwsettings{'TIME_TUE'},$fwdfwsettings{'TIME_WED'},$fwdfwsettings{'TIME_THU'},$fwdfwsettings{'TIME_FRI'},$fwdfwsettings{'TIME_SAT'},$fwdfwsettings{'TIME_SUN'},$fwdfwsettings{'TIME_FROM'},$fwdfwsettings{'TIME_TO'},$fwdfwsettings{'USE_NAT'},$fwdfwsettings{$fwdfwsettings{'nat'}},$fwdfwsettings{'dnatport'},$fwdfwsettings{'nat'}"
316 eq "$configfwdfw{$key}[0],$configfwdfw{$key}[2],$configfwdfw{$key}[3],$configfwdfw{$key}[4],$configfwdfw{$key}[5],$configfwdfw{$key}[6],$configfwdfw{$key}[7],$configfwdfw{$key}[8],$configfwdfw{$key}[9],$configfwdfw{$key}[10],$configfwdfw{$key}[11],$configfwdfw{$key}[12],$configfwdfw{$key}[13],$configfwdfw{$key}[14],$configfwdfw{$key}[15],$configfwdfw{$key}[18],$configfwdfw{$key}[19],$configfwdfw{$key}[20],$configfwdfw{$key}[21],$configfwdfw{$key}[22],$configfwdfw{$key}[23],$configfwdfw{$key}[24],$configfwdfw{$key}[25],$configfwdfw{$key}[26],$configfwdfw{$key}[27],$configfwdfw{$key}[28],$configfwdfw{$key}[29],$configfwdfw{$key}[30],$configfwdfw{$key}[31]"){
317 $errormessage.=$Lang::tr
{'fwdfw err ruleexists'};
318 if($fwdfwsettings{'oldruleremark'} ne $fwdfwsettings{'ruleremark'} && $fwdfwsettings{'updatefwrule'} eq 'on' && $fwdfwsettings{'ruleremark'} ne '' && !&validremark
($fwdfwsettings{'ruleremark'})){
319 $errormessage=$Lang::tr
{'fwdfw err remark'}."<br>";
321 if($fwdfwsettings{'oldruleremark'} ne $fwdfwsettings{'ruleremark'} && $fwdfwsettings{'updatefwrule'} eq 'on' && $fwdfwsettings{'ruleremark'} ne '' && &validremark
($fwdfwsettings{'ruleremark'})){
324 if ($fwdfwsettings{'oldruleremark'} eq $fwdfwsettings{'ruleremark'}){
325 $fwdfwsettings{'nosave'} = 'on';
330 #check Rulepos on new Rule
331 if($fwdfwsettings{'rulepos'} > 0 && !$fwdfwsettings{'oldrulenumber'}){
332 $fwdfwsettings{'oldrulenumber'}=$maxkey;
333 foreach my $key (sort keys %configfwdfw){
334 if ( "$fwdfwsettings{'RULE_ACTION'},$fwdfwsettings{'ACTIVE'},$fwdfwsettings{'grp1'},$fwdfwsettings{$fwdfwsettings{'grp1'}},$fwdfwsettings{'grp2'},$fwdfwsettings{$fwdfwsettings{'grp2'}},$fwdfwsettings{'USE_SRC_PORT'},$fwdfwsettings{'PROT'},$fwdfwsettings{'ICMP_TYPES'},$fwdfwsettings{'SRC_PORT'},$fwdfwsettings{'USESRV'},$fwdfwsettings{'TGT_PROT'},$fwdfwsettings{'ICMP_TGT'},$fwdfwsettings{'grp3'},$fwdfwsettings{$fwdfwsettings{'grp3'}},$fwdfwsettings{'TIME'},$fwdfwsettings{'TIME_MON'},$fwdfwsettings{'TIME_TUE'},$fwdfwsettings{'TIME_WED'},$fwdfwsettings{'TIME_THU'},$fwdfwsettings{'TIME_FRI'},$fwdfwsettings{'TIME_SAT'},$fwdfwsettings{'TIME_SUN'},$fwdfwsettings{'TIME_FROM'},$fwdfwsettings{'TIME_TO'},$fwdfwsettings{'USE_NAT'},$fwdfwsettings{$fwdfwsettings{'nat'}},$fwdfwsettings{'dnatport'},$fwdfwsettings{'nat'}"
335 eq "$configfwdfw{$key}[0],$configfwdfw{$key}[2],$configfwdfw{$key}[3],$configfwdfw{$key}[4],$configfwdfw{$key}[5],$configfwdfw{$key}[6],$configfwdfw{$key}[7],$configfwdfw{$key}[8],$configfwdfw{$key}[9],$configfwdfw{$key}[10],$configfwdfw{$key}[11],$configfwdfw{$key}[12],$configfwdfw{$key}[13],$configfwdfw{$key}[14],$configfwdfw{$key}[15],$configfwdfw{$key}[18],$configfwdfw{$key}[19],$configfwdfw{$key}[20],$configfwdfw{$key}[21],$configfwdfw{$key}[22],$configfwdfw{$key}[23],$configfwdfw{$key}[24],$configfwdfw{$key}[25],$configfwdfw{$key}[26],$configfwdfw{$key}[27],$configfwdfw{$key}[28],$configfwdfw{$key}[29],$configfwdfw{$key}[30],$configfwdfw{$key}[31]"){
336 $errormessage.=$Lang::tr
{'fwdfw err ruleexists'};
340 #check if we just close a rule
341 if( $fwdfwsettings{'oldgrp1a'} eq $fwdfwsettings{'grp1'} && $fwdfwsettings{'oldgrp1b'} eq $fwdfwsettings{$fwdfwsettings{'grp1'}} && $fwdfwsettings{'oldgrp2a'} eq $fwdfwsettings{'grp2'} && $fwdfwsettings{'oldgrp2b'} eq $fwdfwsettings{$fwdfwsettings{'grp2'}} && $fwdfwsettings{'oldgrp3a'} eq $fwdfwsettings{'grp3'} && $fwdfwsettings{'oldgrp3b'} eq $fwdfwsettings{$fwdfwsettings{'grp3'}} && $fwdfwsettings{'oldusesrv'} eq $fwdfwsettings{'USESRV'} && $fwdfwsettings{'oldruleremark'} eq $fwdfwsettings{'ruleremark'} && $fwdfwsettings{'oldruletype'} eq $fwdfwsettings{'chain'}) {
342 if($fwdfwsettings{'nosave'} eq 'on' && $fwdfwsettings{'updatefwrule'} eq 'on'){
343 $fwdfwsettings{'nosave2'} = 'on';
349 if ($fwdfwsettings{'nosave2'} ne 'on'){
350 &saverule
(\
%configfwdfw,$configfwdfw);
357 if($fwdfwsettings{'nosave2'} ne 'on'){
358 &General
::firewall_config_changed
();
363 if ($fwdfwsettings{'ACTION'} eq $Lang::tr
{'fwdfw newrule'})
367 if ($fwdfwsettings{'ACTION'} eq $Lang::tr
{'fwdfw toggle'})
370 &General
::readhasharray
($fwdfwsettings{'config'}, \
%togglehash);
371 foreach my $key (sort keys %togglehash){
372 if ($key eq $fwdfwsettings{'key'}){
373 if ($togglehash{$key}[2] eq 'ON'){$togglehash{$key}[2]='';}else{$togglehash{$key}[2]='ON';}
376 &General
::writehasharray
($fwdfwsettings{'config'}, \
%togglehash);
377 &General
::firewall_config_changed
();
380 if ($fwdfwsettings{'ACTION'} eq $Lang::tr
{'fwdfw togglelog'})
383 &General
::readhasharray
($fwdfwsettings{'config'}, \
%togglehash);
384 foreach my $key (sort keys %togglehash){
385 if ($key eq $fwdfwsettings{'key'}){
386 if ($togglehash{$key}[17] eq 'ON'){$togglehash{$key}[17]='';}else{$togglehash{$key}[17]='ON';}
389 &General
::writehasharray
($fwdfwsettings{'config'}, \
%togglehash);
390 &General
::firewall_config_changed
();
393 if ($fwdfwsettings{'ACTION'} eq $Lang::tr
{'fwdfw reread'})
395 &General
::firewall_reload
();
398 if ($fwdfwsettings{'ACTION'} eq 'editrule')
400 $fwdfwsettings{'updatefwrule'}='on';
403 if ($fwdfwsettings{'ACTION'} eq 'deleterule')
407 if ($fwdfwsettings{'ACTION'} eq 'moveup')
412 if ($fwdfwsettings{'ACTION'} eq 'movedown')
417 if ($fwdfwsettings{'ACTION'} eq 'copyrule')
419 $fwdfwsettings{'copyfwrule'}='on';
422 if ($fwdfwsettings{'ACTION'} eq '' or $fwdfwsettings{'ACTION'} eq 'reset')
431 &Header
::openbox
('100%', 'left', "");
433 <form method="POST" action="">
434 <table border='0' width="100%">
437 <input type='submit' name='ACTION' value='$Lang::tr{'fwdfw newrule'}'>
440 if (&General
::firewall_needs_reload
()) {
442 <input type='submit' name='ACTION' value='$Lang::tr{'fwdfw reread'}' style='font-weight: bold; color: green;'>
466 $fwdfwsettings{'updatefwrule'}='';
467 $fwdfwsettings{'config'}=$oldchain;
468 $fwdfwsettings{'nobase'}='on';
474 #check ip-address if manual
475 if ($fwdfwsettings{'src_addr'} eq $fwdfwsettings{$fwdfwsettings{'grp1'}} && $fwdfwsettings{'src_addr'} ne ''){
476 #check if ip with subnet
477 if ($fwdfwsettings{'src_addr'} =~ /^(.*?)\/(.*?
)$/) {
478 ($ip,$subnet)=split (/\//,$fwdfwsettings{'src_addr'});
479 $subnet = &General
::iporsubtocidr
($subnet);
480 $fwdfwsettings{'isip'}='on';
483 if($fwdfwsettings{'src_addr'}=~/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/){
484 $ip=$fwdfwsettings{'src_addr'};
486 $fwdfwsettings{'isip'}='on';
489 if ($fwdfwsettings{'isip'} ne 'on'){
490 if (&General
::validmac
($fwdfwsettings{'src_addr'})){
491 $fwdfwsettings{'ismac'}='on';
494 if ($fwdfwsettings{'isip'} eq 'on'){
495 ##check if ip is valid
496 if (! &General
::validip
($ip)){
497 $errormessage.=$Lang::tr
{'fwdfw err src_addr'}."<br>";
498 return $errormessage;
500 #check and form valid IP
501 $ip=&General
::ip2dec
($ip);
502 $ip=&General
::dec2ip
($ip);
503 #check if net or broadcast
504 $fwdfwsettings{'src_addr'}="$ip/$subnet";
505 if(!&General
::validipandmask
($fwdfwsettings{'src_addr'})){
506 $errormessage.=$Lang::tr
{'fwdfw err src_addr'}."<br>";
507 return $errormessage;
510 if ($fwdfwsettings{'isip'} ne 'on' && $fwdfwsettings{'ismac'} ne 'on'){
511 $errormessage.=$Lang::tr
{'fwdfw err src_addr'}."<br>";
512 return $errormessage;
514 }elsif($fwdfwsettings{'src_addr'} eq $fwdfwsettings{$fwdfwsettings{'grp1'}} && $fwdfwsettings{'src_addr'} eq ''){
515 $fwdfwsettings{'grp1'}='std_net_src';
516 $fwdfwsettings{$fwdfwsettings{'grp1'}} = 'ALL';
520 if ($fwdfwsettings{$fwdfwsettings{'grp1'}} eq ''){ $errormessage.=$Lang::tr
{'fwdfw err nosrc'}."<br>";}
521 if($fwdfwsettings{'USE_SRC_PORT'} eq 'ON' && ($fwdfwsettings{'PROT'} eq 'TCP' || $fwdfwsettings{'PROT'} eq 'UDP') && $fwdfwsettings{'SRC_PORT'} ne ''){
522 my @parts=split(",",$fwdfwsettings{'SRC_PORT'});
526 if ($_ =~ /^(\d+)\-(\d+)$/ || $_ =~ /^(\d+)\:(\d+)$/) {
528 #change dashes with :
531 push(@values,"1:65535");
534 if ($_ =~ /^(\D)\:(\d+)$/ || $_ =~ /^(\D)\-(\d+)$/) {
535 push(@values,"1:$2");
538 if ($_ =~ /^(\d+)\:(\D)$/ || $_ =~ /^(\d+)\-(\D)$/ ) {
539 push(@values,"$1:65535");
542 $errormessage .= &General
::validportrange
($_, 'destination');
547 if (&General
::validport
($_)){
554 $fwdfwsettings{'SRC_PORT'}=join("|",@values);
556 return $errormessage;
561 &General
::readhasharray
("$configsrv", \
%customservice);
562 #check DNAT settings (has to be single Host and single Port or portrange)
563 if ($fwdfwsettings{'USE_NAT'} eq 'ON' && $fwdfwsettings{'nat'} eq 'dnat'){
564 if($fwdfwsettings{'grp2'} eq 'tgt_addr' || $fwdfwsettings{'grp2'} eq 'cust_host_tgt' || $fwdfwsettings{'grp2'} eq 'ovpn_host_tgt'){
565 #check if manual ip is a single Host (if set)
566 if ($fwdfwsettings{'grp2'} eq 'tgt_addr'){
567 my @tmp= split (/\./,$fwdfwsettings{$fwdfwsettings{'grp2'}});
568 my @tmp1= split ("/",$tmp[3]);
569 if (($tmp1[0] eq "0") || ($tmp1[0] eq "255"))
571 $errormessage=$Lang::tr
{'fwdfw dnat error'}."<br>";
572 return $errormessage;
575 #check if Port is a single Port or portrange
576 if ($fwdfwsettings{'nat'} eq 'dnat' && $fwdfwsettings{'grp3'} eq 'TGT_PORT'){
577 if(($fwdfwsettings{'PROT'} ne 'TCP'|| $fwdfwsettings{'PROT'} ne 'UDP') && $fwdfwsettings{'TGT_PORT'} eq ''){
578 $errormessage=$Lang::tr
{'fwdfw target'}.": ".$Lang::tr
{'fwdfw dnat porterr'}."<br>";
579 return $errormessage;
581 if (($fwdfwsettings{'PROT'} eq 'TCP'|| $fwdfwsettings{'PROT'} eq 'UDP') && $fwdfwsettings{'TGT_PORT'} ne '' && !&check_natport
($fwdfwsettings{'TGT_PORT'})){
582 $errormessage=$Lang::tr
{'fwdfw target'}.": ".$Lang::tr
{'fwdfw dnat porterr'}."<br>";
583 return $errormessage;
587 $errormessage=$Lang::tr
{'fwdfw dnat error'}."<br>";
588 return $errormessage;
591 if ($fwdfwsettings{'tgt_addr'} eq $fwdfwsettings{$fwdfwsettings{'grp2'}} && $fwdfwsettings{'tgt_addr'} ne ''){
592 #check if ip with subnet
593 if ($fwdfwsettings{'tgt_addr'} =~ /^(.*?)\/(.*?
)$/) {
594 ($ip,$subnet)=split (/\//,$fwdfwsettings{'tgt_addr'});
595 $subnet = &General
::iporsubtocidr
($subnet);
598 if($fwdfwsettings{'tgt_addr'}=~/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/){
599 $ip=$fwdfwsettings{'tgt_addr'};
602 #check if ip is valid
603 if (! &General
::validip
($ip)){
604 $errormessage.=$Lang::tr
{'fwdfw err tgt_addr'}."<br>";
605 return $errormessage;
607 #check and form valid IP
608 $ip=&General
::ip2dec
($ip);
609 $ip=&General
::dec2ip
($ip);
610 $fwdfwsettings{'tgt_addr'}="$ip/$subnet";
611 if(!&General
::validipandmask
($fwdfwsettings{'tgt_addr'})){
612 $errormessage.=$Lang::tr
{'fwdfw err tgt_addr'}."<br>";
613 return $errormessage;
615 }elsif($fwdfwsettings{'tgt_addr'} eq $fwdfwsettings{$fwdfwsettings{'grp2'}} && $fwdfwsettings{'tgt_addr'} eq ''){
616 $fwdfwsettings{'grp2'}='std_net_tgt';
617 $fwdfwsettings{$fwdfwsettings{'grp2'}} = 'ALL';
619 #check for mac in targetgroup
620 if ($fwdfwsettings{'grp2'} eq 'cust_grp_tgt'){
621 &General
::readhasharray
("$configgrp", \
%customgrp);
622 &General
::readhasharray
("$confighost", \
%customhost);
623 foreach my $grpkey (sort keys %customgrp){
624 foreach my $hostkey (sort keys %customhost){
625 if ($customgrp{$grpkey}[2] eq $customhost{$hostkey}[0] && $customhost{$hostkey}[1] eq 'mac'){
626 $hint=$Lang::tr
{'fwdfw hint mac'};
633 if ($fwdfwsettings{$fwdfwsettings{'grp2'}} eq ''){ $errormessage.=$Lang::tr
{'fwdfw err notgt'}."<br>";}
635 if ($fwdfwsettings{'USESRV'} eq 'ON'){
636 if ($fwdfwsettings{'grp3'} eq 'cust_srv'){
637 $fwdfwsettings{'TGT_PROT'}='';
638 $fwdfwsettings{'ICMP_TGT'}='';
639 $fwdfwsettings{'TGT_PORT'}='';
641 if ($fwdfwsettings{'grp3'} eq 'cust_srvgrp'){
642 $fwdfwsettings{'TGT_PROT'}='';
643 $fwdfwsettings{'ICMP_TGT'}='';
644 $fwdfwsettings{'TGT_PORT'}='';
645 #check target service
646 if($fwdfwsettings{$fwdfwsettings{'grp3'}} eq ''){
647 $errormessage.=$Lang::tr
{'fwdfw err tgt_grp'};
650 if ($fwdfwsettings{'grp3'} eq 'TGT_PORT'){
651 if ($fwdfwsettings{'PROT'} eq 'TCP' || $fwdfwsettings{'PROT'} eq 'UDP'){
652 if ($fwdfwsettings{'TGT_PORT'} ne ''){
653 if ($fwdfwsettings{'TGT_PORT'} =~ "," && $fwdfwsettings{'USE_NAT'} && $fwdfwsettings{'nat'} eq 'dnat') {
654 $errormessage=$Lang::tr
{'fwdfw dnat porterr'}."<br>";
655 return $errormessage;
657 my @parts=split(",",$fwdfwsettings{'TGT_PORT'});
661 if ($_ =~ /^(\d+)\-(\d+)$/ || $_ =~ /^(\d+)\:(\d+)$/) {
663 #change dashes with :
666 push(@values,"1:65535");
669 if ($_ =~ /^(\D)\:(\d+)$/ || $_ =~ /^(\D)\-(\d+)$/) {
670 push(@values,"1:$2");
673 if ($_ =~ /^(\d+)\:(\D)$/ || $_ =~ /^(\d+)\-(\D)$/) {
674 push(@values,"$1:65535");
677 $errormessage .= &General
::validportrange
($_, 'destination');
682 if (&General
::validport
($_)){
685 $errormessage=$Lang::tr
{'fwdfw err tgt_port'};
686 return $errormessage;
690 $fwdfwsettings{'TGT_PORT'}=join("|",@values);
692 }elsif ($fwdfwsettings{'PROT'} eq 'GRE'){
693 $fwdfwsettings{$fwdfwsettings{'grp3'}} = '';
694 $fwdfwsettings{'TGT_PORT'} = '';
695 $fwdfwsettings{'ICMP_TGT'} = '';
696 }elsif ($fwdfwsettings{'PROT'} eq 'ESP'){
697 $fwdfwsettings{$fwdfwsettings{'grp3'}} = '';
698 $fwdfwsettings{'TGT_PORT'} = '';
699 $fwdfwsettings{'ICMP_TGT'}='';
700 }elsif ($fwdfwsettings{'PROT'} eq 'AH'){
701 $fwdfwsettings{$fwdfwsettings{'grp3'}} = '';
702 $fwdfwsettings{'TGT_PORT'} = '';
703 $fwdfwsettings{'ICMP_TGT'}='';
704 }elsif ($fwdfwsettings{'PROT'} eq 'ICMP'){
705 $fwdfwsettings{$fwdfwsettings{'grp3'}} = '';
706 $fwdfwsettings{'TGT_PORT'} = '';
711 if ($fwdfwsettings{'USESRV'} ne 'ON'){
712 $fwdfwsettings{'grp3'}='';
713 $fwdfwsettings{$fwdfwsettings{'grp3'}}='';
714 $fwdfwsettings{'ICMP_TGT'}='';
717 if($fwdfwsettings{'TIME'} eq 'ON'){
718 if($fwdfwsettings{'TIME_MON'} eq '' && $fwdfwsettings{'TIME_TUE'} eq '' && $fwdfwsettings{'TIME_WED'} eq '' && $fwdfwsettings{'TIME_THU'} eq '' && $fwdfwsettings{'TIME_FRI'} eq '' && $fwdfwsettings{'TIME_SAT'} eq '' && $fwdfwsettings{'TIME_SUN'} eq ''){
719 $errormessage=$Lang::tr
{'fwdfw err time'};
720 return $errormessage;
723 return $errormessage;
728 if($fwdfwsettings{'USE_NAT'} eq 'ON' && $fwdfwsettings{'nat'} eq 'dnat' && $fwdfwsettings{'dnatport'} ne ''){
729 if ($fwdfwsettings{'dnatport'} =~ /^(\d+)\-(\d+)$/) {
730 $fwdfwsettings{'dnatport'} =~ tr/-/:/;
731 if ($fwdfwsettings{'dnatport'} eq "*") {
732 $fwdfwsettings{'dnatport'}="1:65535";
734 if ($fwdfwsettings{'dnatport'} =~ /^(\D)\:(\d+)$/) {
735 $fwdfwsettings{'dnatport'} = "1:$2";
737 if ($fwdfwsettings{'dnatport'} =~ /^(\d+)\:(\D)$/) {
738 $fwdfwsettings{'dnatport'} ="$1:65535";
743 if ($val =~ "," || $val>65536 || $val<0){
750 #check valid port for NAT
751 if($fwdfwsettings{'USE_NAT'} eq 'ON'){
752 #RULE_ACTION must be ACCEPT if we use NAT
753 $fwdfwsettings{'RULE_ACTION'} = 'ACCEPT';
755 #if no dnat or snat selected errormessage
756 if ($fwdfwsettings{'nat'} eq ''){
757 $errormessage=$Lang::tr
{'fwdfw dnat nochoice'};
761 #if using snat, the external port has to be empty
762 if ($fwdfwsettings{'nat'} eq 'snat' && $fwdfwsettings{'dnatport'} ne ''){
763 $errormessage=$Lang::tr
{'fwdfw dnat extport'};
766 #if no dest port is given in nat area, take target host port
767 if($fwdfwsettings{'nat'} eq 'dnat' && $fwdfwsettings{'grp3'} eq 'TGT_PORT' && $fwdfwsettings{'dnatport'} eq ''){$fwdfwsettings{'dnatport'}=$fwdfwsettings{'TGT_PORT'};}
768 if($fwdfwsettings{'TGT_PORT'} eq '' && $fwdfwsettings{'dnatport'} ne '' && ($fwdfwsettings{'PROT'} eq 'TCP' || $fwdfwsettings{'PROT'} eq 'UDP')){
769 $errormessage=$Lang::tr
{'fwdfw dnat porterr2'};
772 #check if port given in nat area is a single valid port or portrange
773 if($fwdfwsettings{'nat'} eq 'dnat' && $fwdfwsettings{'TGT_PORT'} ne '' && !&check_natport
($fwdfwsettings{'dnatport'})){
774 $errormessage=$Lang::tr
{'fwdfw target'}.": ".$Lang::tr
{'fwdfw dnat porterr'}."<br>";
775 }elsif($fwdfwsettings{'USESRV'} eq 'ON' && $fwdfwsettings{'grp3'} eq 'cust_srv'){
777 #get service Protocol and Port
778 foreach my $key (sort keys %customservice){
779 if($fwdfwsettings{$fwdfwsettings{'grp3'}} eq $customservice{$key}[0]){
780 if ($customservice{$key}[2] ne 'TCP' && $customservice{$key}[2] ne 'UDP'){
781 $errormessage=$Lang::tr
{'fwdfw target'}.": ".$Lang::tr
{'fwdfw dnat porterr'}."<br>";
783 $custsrvport= $customservice{$key}[1];
786 if($fwdfwsettings{'nat'} eq 'dnat' && $fwdfwsettings{'dnatport'} eq ''){$fwdfwsettings{'dnatport'}=$custsrvport;}
788 #check if DNAT port is multiple
789 if($fwdfwsettings{'nat'} eq 'dnat' && $fwdfwsettings{'dnatport'} ne ''){
790 my @parts=split(",",$fwdfwsettings{'dnatport'});
794 if ($_ =~ /^(\d+)\-(\d+)$/ || $_ =~ /^(\d+)\:(\d+)$/) {
796 #change dashes with :
799 push(@values,"1:65535");
802 if ($_ =~ /^(\D)\:(\d+)$/ || $_ =~ /^(\D)\-(\d+)$/) {
803 push(@values,"1:$2");
806 if ($_ =~ /^(\d+)\:(\D)$/ || $_ =~ /^(\d+)\-(\D)$/) {
807 push(@values,"$1:65535");
810 $errormessage .= &General
::validportrange
($_, 'destination');
815 if (&General
::validport
($_)){
822 $fwdfwsettings{'dnatport'}=join("|",@values);
824 #check if a rule with prot tcp or udp and ports is edited and now prot is "all", then delete all ports
825 if($fwdfwsettings{'PROT'} eq ''){
826 $fwdfwsettings{'dnatport'}='';
830 if ($fwdfwsettings{'ruleremark'} ne '' && !&validremark
($fwdfwsettings{'ruleremark'})){
831 $errormessage.=$Lang::tr
{'fwdfw err remark'}."<br>";
833 #check if source and target identical
834 if ($fwdfwsettings{$fwdfwsettings{'grp1'}} eq $fwdfwsettings{$fwdfwsettings{'grp2'}} && $fwdfwsettings{$fwdfwsettings{'grp1'}} ne 'ALL'){
835 $errormessage=$Lang::tr
{'fwdfw err same'};
836 return $errormessage;
838 #get source and targetip address if possible
839 my ($sip,$scidr,$tip,$tcidr);
840 ($sip,$scidr)=&get_ip
("src","grp1");
841 ($tip,$tcidr)=&get_ip
("tgt","grp2");
842 #check same iprange in source and target
843 if ($sip ne '' && $scidr ne '' && $tip ne '' && $tcidr ne ''){
844 my $networkip1=&General
::getnetworkip
($sip,$scidr);
845 my $networkip2=&General
::getnetworkip
($tip,$tcidr);
846 if ($scidr gt $tcidr){
847 if ( &General
::IpInSubnet
($networkip1,$tip,&General
::iporsubtodec
($tcidr))){
848 $errormessage.=$Lang::tr
{'fwdfw err samesub'};
850 }elsif($scidr eq $tcidr && $scidr eq '32'){
851 my ($sbyte1,$sbyte2,$sbyte3,$sbyte4)=split(/\./,$networkip1);
852 my ($tbyte1,$tbyte2,$tbyte3,$tbyte4)=split(/\./,$networkip2);
853 if ($sbyte1 eq $tbyte1 && $sbyte2 eq $tbyte2 && $sbyte3 eq $tbyte3){
854 $hint=$Lang::tr
{'fwdfw hint ip1'}."<br>";
855 $hint.=$Lang::tr
{'fwdfw hint ip2'}." Source: $networkip1/$scidr Target: $networkip2/$tcidr<br>";
858 if ( &General
::IpInSubnet
($networkip2,$sip,&General
::iporsubtodec
($scidr)) ){
859 $errormessage.=$Lang::tr
{'fwdfw err samesub'};
863 #when icmp selected, no source and targetport allowed
864 if (($fwdfwsettings{'PROT'} ne '' && $fwdfwsettings{'PROT'} ne 'TCP' && $fwdfwsettings{'PROT'} ne 'UDP' && $fwdfwsettings{'PROT'} ne 'template') && ($fwdfwsettings{'USESRV'} eq 'ON' || $fwdfwsettings{'USE_SRC_PORT'} eq 'ON')){
865 $errormessage.=$Lang::tr
{'fwdfw err prot_port'};
868 #change protocol if prot not equal dest single service
869 if ($fwdfwsettings{'grp3'} eq 'cust_srv'){
870 foreach my $key (sort keys %customservice){
871 if($customservice{$key}[0] eq $fwdfwsettings{$fwdfwsettings{'grp3'}}){
872 if ($customservice{$key}[2] ne $fwdfwsettings{'PROT'}){
873 $fwdfwsettings{'PROT'} = $customservice{$key}[2];
879 #check source and destination protocol if source manual and dest servicegroup
880 if ($fwdfwsettings{'grp3'} eq 'cust_srvgrp'){
881 $fwdfwsettings{'PROT'} = '';
883 #ATTENTION: $fwdfwsetting{'TGT_PROT'} deprecated since 30.09.2013
884 $fwdfwsettings{'TGT_PROT'}=''; #Set field empty (deprecated)
886 if ($fwdfwsettings{'PROT'} eq 'ICMP'){
887 $fwdfwsettings{'USE_SRC_PORT'}='';
888 $fwdfwsettings{'SRC_PORT'}='';
889 #$fwdfwsettings{'USESRV'}='';
890 $fwdfwsettings{'TGT_PORT'}='';
891 &General
::readhasharray
("${General::swroot}/fwhosts/icmp-types", \
%icmptypes);
892 foreach my $key (keys %icmptypes){
893 if($fwdfwsettings{'ICMP_TYPES'} eq "$icmptypes{$key}[0] ($icmptypes{$key}[1])"){
894 $fwdfwsettings{'ICMP_TYPES'}="$icmptypes{$key}[0]";
897 }elsif($fwdfwsettings{'PROT'} eq 'GRE'){
898 $fwdfwsettings{'USE_SRC_PORT'}='';
899 $fwdfwsettings{'SRC_PORT'}='';
900 $fwdfwsettings{'ICMP_TYPES'}='';
901 $fwdfwsettings{'USESRV'}='';
902 $fwdfwsettings{'TGT_PORT'}='';
903 }elsif($fwdfwsettings{'PROT'} eq 'ESP'){
904 $fwdfwsettings{'USE_SRC_PORT'}='';
905 $fwdfwsettings{'SRC_PORT'}='';
906 $fwdfwsettings{'ICMP_TYPES'}='';
907 $fwdfwsettings{'USESRV'}='';
908 $fwdfwsettings{'TGT_PORT'}='';
909 }elsif($fwdfwsettings{'PROT'} eq 'AH'){
910 $fwdfwsettings{'USE_SRC_PORT'}='';
911 $fwdfwsettings{'SRC_PORT'}='';
912 $fwdfwsettings{'ICMP_TYPES'}='';
913 $fwdfwsettings{'USESRV'}='';
914 $fwdfwsettings{'TGT_PORT'}='';
915 }elsif($fwdfwsettings{'PROT'} eq 'IGMP'){
916 $fwdfwsettings{'USE_SRC_PORT'}='';
917 $fwdfwsettings{'SRC_PORT'}='';
918 $fwdfwsettings{'ICMP_TYPES'}='';
919 $fwdfwsettings{'USESRV'}='';
920 $fwdfwsettings{'TGT_PORT'}='';
921 }elsif($fwdfwsettings{'PROT'} eq 'IPv6'){
922 $fwdfwsettings{'USE_SRC_PORT'}='';
923 $fwdfwsettings{'SRC_PORT'}='';
924 $fwdfwsettings{'ICMP_TYPES'}='';
925 $fwdfwsettings{'USESRV'}='';
926 $fwdfwsettings{'TGT_PORT'}='';
927 }elsif($fwdfwsettings{'PROT'} eq 'IPIP'){
928 $fwdfwsettings{'USE_SRC_PORT'}='';
929 $fwdfwsettings{'SRC_PORT'}='';
930 $fwdfwsettings{'ICMP_TYPES'}='';
931 $fwdfwsettings{'USESRV'}='';
932 $fwdfwsettings{'TGT_PORT'}='';
933 }elsif($fwdfwsettings{'PROT'} ne 'TCP' && $fwdfwsettings{'PROT'} ne 'UDP'){
934 $fwdfwsettings{'ICMP_TYPES'}='';
935 $fwdfwsettings{'SRC_PORT'}='';
936 $fwdfwsettings{'TGT_PORT'}='';
937 }elsif($fwdfwsettings{'PROT'} ne 'ICMP'){
938 $fwdfwsettings{'ICMP_TYPES'}='';
944 #Test if manual IP is part of static OpenVPN networks
945 &General
::readhasharray
("$configccdnet", \
%ccdnet);
946 foreach my $key (sort keys %ccdnet){
947 my ($vpnip,$vpnsubnet) = split ("/",$ccdnet{$key}[1]);
948 my $sub=&General
::iporsubtodec
($vpnsubnet);
949 if (&General
::IpInSubnet
($ip,$vpnip,$sub)){
953 # A Test if manual ip is part of dynamic openvpn subnet is made in getcolor
954 # because if one creates a custom host with the ip, we need to check the color there!
955 # It does not make sense to check this here
957 # Test if manual IP is part of an OpenVPN N2N subnet does also not make sense here
958 # Is also checked in getcolor
960 # Test if manual ip is part of an IPsec Network is also checked in getcolor
970 &General
::readhasharray
($fwdfwsettings{'config'}, \
%delhash);
971 foreach my $key (sort {$a <=> $b} keys %delhash){
972 if ($key >= $fwdfwsettings{'key'}) {
974 if (exists $delhash{$next}) {
975 foreach my $i (0 .. $#{$delhash{$next}}) {
976 $delhash{$key}[$i] = $delhash{$next}[$i];
981 # Remove the very last entry.
982 my $last_key = (sort {$a <=> $b} keys %delhash)[-1];
983 delete $delhash{$last_key};
985 &General
::writehasharray
($fwdfwsettings{'config'}, \
%delhash);
986 &General
::firewall_config_changed
();
988 if($fwdfwsettings{'nobase'} ne 'on'){
995 &General
::readhasharray
("$configfwdfw", \
%configfwdfw);
996 foreach my $key (sort keys %configfwdfw){
998 if ($configfwdfw{$key}[2] eq 'ON'){$configfwdfw{$key}[2]='';}
1001 &General
::writehasharray
("$configfwdfw", \
%configfwdfw);
1002 &General
::firewall_config_changed
();
1006 if ($errormessage) {
1007 &Header
::openbox
('100%', 'left', $Lang::tr
{'error messages'});
1008 print "<class name='base'>$errormessage\n";
1009 print " </class>\n";
1010 &Header
::closebox
();
1015 my %hash=%{(shift)};
1018 foreach my $key (sort { ncmp
($hash{$a}[0],$hash{$b}[0]) } keys %hash){
1019 if($hash{$key}[0] eq $val){
1020 print"<option value='$hash{$key}[0]' selected>$hash{$key}[0]</option>";
1022 print"<option value='$hash{$key}[0]'>$hash{$key}[0]</option>";
1032 $checked{'grp1'}{$fwdfwsettings{'grp1'}} = 'CHECKED';
1033 $checked{'grp2'}{$fwdfwsettings{'grp2'}} = 'CHECKED';
1034 $checked{'grp3'}{$fwdfwsettings{'grp3'}} = 'CHECKED';
1035 $checked{'USE_SRC_PORT'}{$fwdfwsettings{'USE_SRC_PORT'}} = 'CHECKED';
1036 $checked{'USESRV'}{$fwdfwsettings{'USESRV'}} = 'CHECKED';
1037 $checked{'ACTIVE'}{$fwdfwsettings{'ACTIVE'}} = 'CHECKED';
1038 $checked{'LOG'}{$fwdfwsettings{'LOG'}} = 'CHECKED';
1039 $checked{'TIME'}{$fwdfwsettings{'TIME'}} = 'CHECKED';
1040 $checked{'TIME_MON'}{$fwdfwsettings{'TIME_MON'}} = 'CHECKED';
1041 $checked{'TIME_TUE'}{$fwdfwsettings{'TIME_TUE'}} = 'CHECKED';
1042 $checked{'TIME_WED'}{$fwdfwsettings{'TIME_WED'}} = 'CHECKED';
1043 $checked{'TIME_THU'}{$fwdfwsettings{'TIME_THU'}} = 'CHECKED';
1044 $checked{'TIME_FRI'}{$fwdfwsettings{'TIME_FRI'}} = 'CHECKED';
1045 $checked{'TIME_SAT'}{$fwdfwsettings{'TIME_SAT'}} = 'CHECKED';
1046 $checked{'TIME_SUN'}{$fwdfwsettings{'TIME_SUN'}} = 'CHECKED';
1047 $selected{'TIME_FROM'}{$fwdfwsettings{'TIME_FROM'}} = 'selected';
1048 $selected{'TIME_TO'}{$fwdfwsettings{'TIME_TO'}} = 'selected';
1049 $selected{'ipfire'}{$fwdfwsettings{$fwdfwsettings{'grp1'}}} ='selected';
1050 $selected{'ipfire'}{$fwdfwsettings{$fwdfwsettings{'grp2'}}} ='selected';
1052 <table width='100%' border='0'>
1053 <tr><td width='50%' valign='top'>
1054 <table width='95%' border='0'>
1055 <tr><td width='1%'><input type='radio' name='$grp' id='std_net_$srctgt' value='std_net_$srctgt' $checked{$grp}{'std_net_'.$srctgt}></td><td>$Lang::tr{'fwhost stdnet'}</td><td align='right'><select name='std_net_$srctgt' style='width:200px;'>
1057 foreach my $network (sort keys %defaultNetworks)
1059 next if($defaultNetworks{$network}{'NAME'} eq "RED" && $srctgt eq 'src');
1060 next if($defaultNetworks{$network}{'NAME'} eq "IPFire");
1061 print "<option value='$defaultNetworks{$network}{'NAME'}'";
1062 print " selected='selected'" if ($fwdfwsettings{$fwdfwsettings{$grp}} eq $defaultNetworks{$network}{'NAME'});
1063 my $defnet="$defaultNetworks{$network}{'NAME'}_NETADDRESS";
1064 my $defsub="$defaultNetworks{$network}{'NAME'}_NETMASK";
1065 my $defsub1=&General
::subtocidr
($ifaces{$defsub});
1066 $ifaces{$defnet}='' if ($defaultNetworks{$network}{'NAME'} eq 'RED');
1067 if ($ifaces{$defnet}){
1068 print ">$network ($ifaces{$defnet}/$defsub1)</option>";
1070 print ">$network</option>";
1073 print"</select></td></tr>";
1075 if (! -z
$confignet || $optionsfw{'SHOWDROPDOWN'} eq 'on'){
1076 print"<tr><td><input type='radio' name='$grp' id='cust_net_$srctgt' value='cust_net_$srctgt' $checked{$grp}{'cust_net_'.$srctgt}></td><td>$Lang::tr{'fwhost cust net'}</td><td align='right'><select name='cust_net_$srctgt' style='width:200px;'>";
1077 &fillselect
(\
%customnetwork,$fwdfwsettings{$fwdfwsettings{$grp}});
1078 print"</select></td>";
1081 if (! -z
$confighost || $optionsfw{'SHOWDROPDOWN'} eq 'on'){
1082 print"<tr><td><input type='radio' name='$grp' id='cust_host_$srctgt' value='cust_host_$srctgt' $checked{$grp}{'cust_host_'.$srctgt}></td><td>$Lang::tr{'fwhost cust addr'}</td><td align='right'><select name='cust_host_$srctgt' style='width:200px;'>";
1083 &fillselect
(\
%customhost,$fwdfwsettings{$fwdfwsettings{$grp}});
1084 print"</select></td>";
1087 if (! -z
$configgrp || $optionsfw{'SHOWDROPDOWN'} eq 'on'){
1088 print"<tr><td valign='top'><input type='radio' name='$grp' id='cust_grp_$srctgt' value='cust_grp_$srctgt' $checked{$grp}{'cust_grp_'.$srctgt}></td><td >$Lang::tr{'fwhost cust grp'}</td><td align='right'><select name='cust_grp_$srctgt' style='width:200px;'>";
1089 foreach my $key (sort { ncmp
($customgrp{$a}[0],$customgrp{$b}[0]) } keys %customgrp) {
1090 if($helper ne $customgrp{$key}[0] && $customgrp{$key}[2] ne 'none'){
1092 print "selected='selected' " if ($fwdfwsettings{$fwdfwsettings{$grp}} eq $customgrp{$key}[0]);
1093 print ">$customgrp{$key}[0]</option>";
1095 $helper=$customgrp{$key}[0];
1097 print"</select></td>";
1099 #End left table. start right table (vpn)
1100 print"</tr></table></td><td valign='top'><table width='95%' border='0' align='right'><tr>";
1102 if( ! -z
$configccdnet || $optionsfw{'SHOWDROPDOWN'} eq 'on'){
1103 print"<td width='1%'><input type='radio' name='$grp' id='ovpn_net_$srctgt' value='ovpn_net_$srctgt' $checked{$grp}{'ovpn_net_'.$srctgt}></td><td nowrap='nowrap' width='16%'>$Lang::tr{'fwhost ccdnet'}</td><td nowrap='nowrap' width='1%' align='right'><select name='ovpn_net_$srctgt' style='width:200px;'>";
1104 &fillselect
(\
%ccdnet,$fwdfwsettings{$fwdfwsettings{$grp}});
1105 print"</select></td></tr>";
1108 foreach my $key (sort { ncmp
($ccdhost{$a}[0],$ccdhost{$b}[0]) } keys %ccdhost){
1109 if ($ccdhost{$key}[33] ne '' ){
1110 print"<tr><td width='1%'><input type='radio' name='$grp' id='ovpn_host_$srctgt' value='ovpn_host_$srctgt' $checked{$grp}{'ovpn_host_'.$srctgt}></td><td nowrap='nowrap' width='16%'>$Lang::tr{'fwhost ccdhost'}</td><td nowrap='nowrap' width='1%' align='right'><select name='ovpn_host_$srctgt' style='width:200px;'>" if ($show eq '');
1112 print "<option value='$ccdhost{$key}[1]'";
1113 print "selected='selected'" if ($fwdfwsettings{$fwdfwsettings{$grp}} eq $ccdhost{$key}[1]);
1114 print ">$ccdhost{$key}[1]</option>";
1117 if($optionsfw{'SHOWDROPDOWN'} eq 'on' && $show eq ''){
1118 print"<tr><td width='1%'><input type='radio' name='$grp' id='ovpn_host_$srctgt' value='ovpn_host_$srctgt' $checked{$grp}{'ovpn_host_'.$srctgt}></td><td nowrap='nowrap' width='16%'>$Lang::tr{'fwhost ccdhost'}</td><td nowrap='nowrap' width='1%' align='right'><select name='ovpn_host_$srctgt' style='width:200px;'></select></td></tr>" ;
1120 if ($show eq '1'){$show='';print"</select></td></tr>";}
1122 foreach my $key (sort { ncmp
($ccdhost{$a}[1],$ccdhost{$b}[1]) } keys %ccdhost){
1123 if ($ccdhost{$key}[3] eq 'net'){
1124 print"<tr><td width='1%'><input type='radio' name='$grp' id='ovpn_n2n_$srctgt' value='ovpn_n2n_$srctgt' $checked{$grp}{'ovpn_n2n_'.$srctgt}></td><td nowrap='nowrap' width='16%'>$Lang::tr{'fwhost ovpn_n2n'}:</td><td nowrap='nowrap' width='1%' align='right'><select name='ovpn_n2n_$srctgt' style='width:200px;'>" if ($show eq '');
1126 print "<option value='$ccdhost{$key}[1]'";
1127 print "selected='selected'" if ($fwdfwsettings{$fwdfwsettings{$grp}} eq $ccdhost{$key}[1]);
1128 print ">$ccdhost{$key}[1]</option>";
1131 if($optionsfw{'SHOWDROPDOWN'} eq 'on' && $show eq ''){
1132 print"<tr><td width='1%'><input type='radio' name='$grp' id='ovpn_n2n_$srctgt' value='ovpn_n2n_$srctgt' $checked{$grp}{'ovpn_n2n_'.$srctgt}></td><td nowrap='nowrap' width='16%'>$Lang::tr{'fwhost ovpn_n2n'}</td><td nowrap='nowrap' width='1%' align='right'><select name='ovpn_n2n_$srctgt' style='width:200px;'></select></td></tr>" ;
1134 if ($show eq '1'){$show='';print"</select></td></tr>";}
1136 foreach my $key (sort { ncmp
($ipsecconf{$a}[1],$ipsecconf{$b}[1]) } keys %ipsecconf) {
1137 if ($ipsecconf{$key}[3] eq 'net' || ($optionsfw{'SHOWDROPDOWN'} eq 'on' && $ipsecconf{$key}[3] ne 'host')){
1138 print"<tr><td valign='top'><input type='radio' name='$grp' value='ipsec_net_$srctgt' $checked{$grp}{'ipsec_net_'.$srctgt}></td><td >$Lang::tr{'fwhost ipsec net'}</td><td align='right'><select name='ipsec_net_$srctgt' style='width:200px;'>" if ($show eq '');
1141 print "selected='selected'" if ($fwdfwsettings{$fwdfwsettings{$grp}} eq $ipsecconf{$key}[1]);
1142 print ">$ipsecconf{$key}[1]</option>";
1145 if($optionsfw{'SHOWDROPDOWN'} eq 'on' && $show eq ''){
1146 print"<tr><td valign='top'><input type='radio' name='$grp' id='ipsec_net_$srctgt' value='ipsec_net_$srctgt' $checked{$grp}{'ipsec_net_'.$srctgt}></td><td >$Lang::tr{'fwhost ipsec net'}</td><td align='right'><select name='ipsec_net_$srctgt' style='width:200px;'><select></td></tr>";
1148 if ($show eq '1'){$show='';print"</select></td></tr>";}
1151 print"</td></tr></table><br>";
1159 &General
::readhash
("/var/ipfire/ethernet/settings", \
%netsettings);
1160 if ($fwdfwsettings{$grp} ne $Lang::tr
{'fwhost any'}){
1161 if ($fwdfwsettings{$grp} eq $val.'_addr'){
1162 ($a,$b) = split (/\//, $fwdfwsettings{$fwdfwsettings{$grp}});
1163 }elsif($fwdfwsettings{$grp} eq 'std_net_'.$val){
1164 if ($fwdfwsettings{$fwdfwsettings{$grp}} =~ /Gr/i){
1165 $a=$netsettings{'GREEN_NETADDRESS'};
1166 $b=&General
::iporsubtocidr
($netsettings{'GREEN_NETMASK'});
1167 }elsif($fwdfwsettings{$fwdfwsettings{$grp}} =~ /Ora/i){
1168 $a=$netsettings{'ORANGE_NETADDRESS'};
1169 $b=&General
::iporsubtocidr
($netsettings{'ORANGE_NETMASK'});
1170 }elsif($fwdfwsettings{$fwdfwsettings{$grp}} =~ /Bl/i){
1171 $a=$netsettings{'BLUE_NETADDRESS'};
1172 $b=&General
::iporsubtocidr
($netsettings{'BLUE_NETMASK'});
1173 }elsif($fwdfwsettings{$fwdfwsettings{$grp}} =~ /OpenVPN/i){
1174 &General
::readhash
("$configovpn",\
%ovpnsettings);
1175 ($a,$b) = split (/\//, $ovpnsettings{'DOVPN_SUBNET'});
1176 $b=&General
::iporsubtocidr
($b);
1178 }elsif($fwdfwsettings{$grp} eq 'cust_net_'.$val){
1179 &General
::readhasharray
("$confignet", \
%customnetwork);
1180 foreach my $key (keys %customnetwork){
1181 if($customnetwork{$key}[0] eq $fwdfwsettings{$fwdfwsettings{$grp}}){
1182 $a=$customnetwork{$key}[1];
1183 $b=&General
::iporsubtocidr
($customnetwork{$key}[2]);
1186 }elsif($fwdfwsettings{$grp} eq 'cust_host_'.$val){
1187 &General
::readhasharray
("$confighost", \
%customhost);
1188 foreach my $key (keys %customhost){
1189 if($customhost{$key}[0] eq $fwdfwsettings{$fwdfwsettings{$grp}}){
1190 if ($customhost{$key}[1] eq 'ip'){
1191 ($a,$b)=split (/\//,$customhost{$key}[2]);
1192 $b=&General
::iporsubtocidr
($b);
1194 if ($grp eq 'grp2'){
1195 $errormessage=$Lang::tr
{'fwdfw err tgt_mac'};
1207 &General
::setup_default_networks
(\
%defaultNetworks);
1208 foreach my $network (sort keys %defaultNetworks)
1210 return "$network" if ($val eq $defaultNetworks{$network}{'NAME'});
1215 my %hash=%{(shift)};
1217 if($hash{$key}[7] eq 'ON' && $hash{$key}[10]){
1218 $hash{$key}[10]=~ s/\|/,/g;
1219 print": $hash{$key}[10]";
1220 }elsif($hash{$key}[7] eq 'ON' && $hash{$key}[8] eq 'ICMP'){
1221 print": <br>$hash{$key}[9] ";
1226 my %hash=%{(shift)};
1230 if($hash{$key}[11] eq 'ON' && $hash{$key}[12] ne 'ICMP'){
1231 if($hash{$key}[14] eq 'cust_srv'){
1232 &General
::readhasharray
("$configsrv", \
%customservice);
1233 foreach my $i (sort keys %customservice){
1234 if($customservice{$i}[0] eq $hash{$key}[15]){
1235 $service = $customservice{$i}[0];
1238 }elsif($hash{$key}[14] eq 'cust_srvgrp'){
1239 $service=$hash{$key}[15];
1240 }elsif($hash{$key}[14] eq 'TGT_PORT'){
1241 $hash{$key}[15]=~ s/\|/,/g;
1242 $service=$hash{$key}[15];
1249 sub get_serviceports
1253 &General
::readhasharray
("$configsrv", \
%customservice);
1254 &General
::readhasharray
("$configsrvgrp", \
%customservicegrp);
1259 if($type eq 'service'){
1260 foreach my $key (sort { ncmp
($customservice{$a}[0],$customservice{$b}[0]) } keys %customservice){
1261 if ($customservice{$key}[0] eq $name){
1262 push (@protocols,$customservice{$key}[2]);
1265 }elsif($type eq 'group'){
1266 foreach my $key (sort { ncmp
($customservicegrp{$a}[0],$customservicegrp{$b}[0]) } keys %customservicegrp){
1267 if ($customservicegrp{$key}[0] eq $name){
1268 foreach my $key1 (sort { ncmp
($customservice{$a}[0],$customservice{$b}[0]) } keys %customservice){
1269 if ($customservice{$key1}[0] eq $customservicegrp{$key}[2]){
1270 if($customservice{$key1}[2] eq 'TCP'){
1272 }elsif($customservice{$key1}[2] eq 'ICMP'){
1274 }elsif($customservice{$key1}[2] eq 'UDP'){
1282 if($tcp && $udp && $icmp){
1283 push (@protocols,"TCP,UDP, <br>ICMP");
1287 push (@protocols,"TCP");
1290 push (@protocols,"UDP");
1293 push (@protocols,"ICMP");
1302 if($optionsfw{'SHOWCOLORS'} eq 'on'){
1303 # Don't colourise MAC addresses
1304 if (&General
::validmac
($val)) {
1310 if ($nettype eq 'cust_host_src' || $nettype eq 'cust_host_tgt'){
1311 foreach my $key (sort keys %$hash){
1312 if ($$hash{$key}[0] eq $val){
1313 $val=$$hash{$key}[2];
1318 if ($val eq 'GREEN'){
1319 $tdcolor="style='background-color: $Header::colourgreen;color:white;'";
1321 }elsif ($val eq 'ORANGE'){
1322 $tdcolor="style='background-color: $Header::colourorange;color:white;'";
1324 }elsif ($val eq 'BLUE'){
1325 $tdcolor="style='background-color: $Header::colourblue;color:white;'";
1327 }elsif ($val eq 'RED' ||$val eq 'RED1' ){
1328 $tdcolor="style='background-color: $Header::colourred;color:white;'";
1330 }elsif ($val eq 'IPFire' ){
1331 $tdcolor="style='background-color: $Header::colourred;color:white;'";
1333 }elsif ($val eq 'OpenVPN-Dyn' ){
1334 $tdcolor="style='background-color: $Header::colourovpn;color:white;'";
1336 }elsif ($val eq 'IPsec RW' ){
1337 $tdcolor="style='background-color: $Header::colourvpn;color:white;'";
1339 }elsif($val =~ /^(.*?)\/(.*?
)$/){
1340 my ($sip,$scidr) = split ("/",$val);
1341 if ( &General
::IpInSubnet
($sip,$netsettings{'ORANGE_ADDRESS'},$netsettings{'ORANGE_NETMASK'})){
1342 $tdcolor="style='background-color: $Header::colourorange;color:white;'";
1345 if ( &General
::IpInSubnet
($sip,$netsettings{'GREEN_ADDRESS'},$netsettings{'GREEN_NETMASK'})){
1346 $tdcolor="style='background-color: $Header::colourgreen;color:white;'";
1349 if ( &General
::IpInSubnet
($sip,$netsettings{'BLUE_ADDRESS'},$netsettings{'BLUE_NETMASK'})){
1350 $tdcolor="style='background-color: $Header::colourblue;color:white;'";
1353 }elsif ($val eq 'Default IP'){
1354 $tdcolor="style='background-color: $Header::colourred;color:white;'";
1357 #Check if a manual IP or custom host is part of a VPN
1358 if ($nettype eq 'src_addr' || $nettype eq 'tgt_addr' || $nettype eq 'cust_host_src' || $nettype eq 'cust_host_tgt'){
1359 #Check if IP is part of OpenVPN dynamic subnet
1360 my ($a,$b) = split("/",$ovpnsettings{'DOVPN_SUBNET'});
1361 my ($c,$d) = split("/",$val);
1362 if (&General
::IpInSubnet
($c,$a,$b)){
1363 $tdcolor="style='background-color: $Header::colourovpn;color:white;'";
1366 #Check if IP is part of OpenVPN static subnet
1367 foreach my $key (sort keys %ccdnet){
1368 my ($a,$b) = split("/",$ccdnet{$key}[1]);
1369 $b =&General
::iporsubtodec
($b);
1370 if (&General
::IpInSubnet
($c,$a,$b)){
1371 $tdcolor="style='background-color: $Header::colourovpn;color:white;'";
1375 #Check if IP is part of OpenVPN N2N subnet
1376 foreach my $key (sort keys %ccdhost){
1377 if ($ccdhost{$key}[3] eq 'net'){
1378 my ($a,$b) = split("/",$ccdhost{$key}[11]);
1379 if (&General
::IpInSubnet
($c,$a,$b)){
1380 $tdcolor="style='background-color: $Header::colourovpn;color:white;'";
1385 #Check if IP is part of IPsec RW network
1386 if ($ipsecsettings{'RW_NET'} ne ''){
1387 my ($a,$b) = split("/",$ipsecsettings{'RW_NET'});
1388 $b=&General
::iporsubtodec
($b);
1389 if (&General
::IpInSubnet
($c,$a,$b)){
1390 $tdcolor="style='background-color: $Header::colourvpn;color:white;'";
1394 #Check if IP is part of a IPsec N2N network
1395 foreach my $key (sort keys %ipsecconf){
1396 my ($a,$b) = split("/",$ipsecconf{$key}[11]);
1397 $b=&General
::iporsubtodec
($b);
1398 if (&General
::IpInSubnet
($c,$a,$b)){
1399 $tdcolor="style='background-color: $Header::colourvpn;color:white;'";
1405 if ($nettype eq 'ovpn_n2n_src' || $nettype eq 'ovpn_n2n_tgt' || $nettype eq 'ovpn_net_src' || $nettype eq 'ovpn_net_tgt'|| $nettype eq 'ovpn_host_src' || $nettype eq 'ovpn_host_tgt'){
1406 $tdcolor="style='background-color: $Header::colourovpn;color:white;'";
1409 if ($nettype eq 'ipsec_net_src' || $nettype eq 'ipsec_net_tgt'){
1410 $tdcolor="style='background-color: $Header::colourvpn;color:white;'";
1414 foreach my $alias (sort keys %aliases)
1416 if ($val eq $alias){
1417 $tdcolor="style='background-color:$Header::colourred;color:white;'";
1428 &Header
::openbox
('100%', 'left', $Lang::tr
{'fwhost hint'});
1429 print "<class name='base'>$hint\n";
1430 print " </class>\n";
1431 &Header
::closebox
();
1437 &General
::setup_default_networks
(\
%defaultNetworks);
1438 &General
::readhash
("/var/ipfire/ethernet/settings", \
%netsettings);
1439 #read all configfiles
1440 &General
::readhasharray
("$configccdnet", \
%ccdnet);
1441 &General
::readhasharray
("$confignet", \
%customnetwork);
1442 &General
::readhasharray
("$configccdhost", \
%ccdhost);
1443 &General
::readhasharray
("$confighost", \
%customhost);
1444 &General
::readhasharray
("$configccdhost", \
%ccdhost);
1445 &General
::readhasharray
("$configgrp", \
%customgrp);
1446 &General
::readhasharray
("$configipsec", \
%ipsecconf);
1447 &General
::get_aliases
(\
%aliases);
1451 if($fwdfwsettings{'config'} eq ''){$fwdfwsettings{'config'}=$configfwdfw;}
1452 my $config=$fwdfwsettings{'config'};
1455 open (CONN1
,"/var/ipfire/red/local-ipaddress");
1456 my $redip = <CONN1
>;
1458 if (! $fwdfwsettings{'RULE_ACTION'} && $fwdfwsettings{'POLICY'} eq 'MODE2'){
1459 $fwdfwsettings{'RULE_ACTION'}='DROP';
1460 }elsif(! $fwdfwsettings{'RULE_ACTION'} && $fwdfwsettings{'POLICY'} eq 'MODE1'){
1461 $fwdfwsettings{'RULE_ACTION'}='ACCEPT';
1463 $checked{'grp1'}{$fwdfwsettings{'grp1'}} = 'CHECKED';
1464 $checked{'grp2'}{$fwdfwsettings{'grp2'}} = 'CHECKED';
1465 $checked{'grp3'}{$fwdfwsettings{'grp3'}} = 'CHECKED';
1466 $checked{'USE_SRC_PORT'}{$fwdfwsettings{'USE_SRC_PORT'}} = 'CHECKED';
1467 $checked{'USESRV'}{$fwdfwsettings{'USESRV'}} = 'CHECKED';
1468 $checked{'ACTIVE'}{$fwdfwsettings{'ACTIVE'}} = 'CHECKED';
1469 $checked{'LOG'}{$fwdfwsettings{'LOG'}} = 'CHECKED';
1470 $checked{'TIME'}{$fwdfwsettings{'TIME'}} = 'CHECKED';
1471 $checked{'TIME_MON'}{$fwdfwsettings{'TIME_MON'}} = 'CHECKED';
1472 $checked{'TIME_TUE'}{$fwdfwsettings{'TIME_TUE'}} = 'CHECKED';
1473 $checked{'TIME_WED'}{$fwdfwsettings{'TIME_WED'}} = 'CHECKED';
1474 $checked{'TIME_THU'}{$fwdfwsettings{'TIME_THU'}} = 'CHECKED';
1475 $checked{'TIME_FRI'}{$fwdfwsettings{'TIME_FRI'}} = 'CHECKED';
1476 $checked{'TIME_SAT'}{$fwdfwsettings{'TIME_SAT'}} = 'CHECKED';
1477 $checked{'TIME_SUN'}{$fwdfwsettings{'TIME_SUN'}} = 'CHECKED';
1478 $checked{'USE_NAT'}{$fwdfwsettings{'USE_NAT'}} = 'CHECKED';
1479 $selected{'TIME_FROM'}{$fwdfwsettings{'TIME_FROM'}} = 'selected';
1480 $selected{'TIME_TO'}{$fwdfwsettings{'TIME_TO'}} = 'selected';
1481 $selected{'ipfire'}{$fwdfwsettings{$fwdfwsettings{'grp2'}}} ='selected';
1482 $selected{'ipfire_src'}{$fwdfwsettings{$fwdfwsettings{'grp1'}}} ='selected';
1483 #check if update and get values
1484 if($fwdfwsettings{'updatefwrule'} eq 'on' || $fwdfwsettings{'copyfwrule'} eq 'on' && !$errormessage){
1485 &General
::readhasharray
("$config", \
%hash);
1486 foreach my $key (sort keys %hash){
1488 if ($key eq $fwdfwsettings{'key'}){
1489 $fwdfwsettings{'oldrulenumber'} = $fwdfwsettings{'key'};
1490 $fwdfwsettings{'RULE_ACTION'} = $hash{$key}[0];
1491 $fwdfwsettings{'chain'} = $hash{$key}[1];
1492 $fwdfwsettings{'ACTIVE'} = $hash{$key}[2];
1493 $fwdfwsettings{'grp1'} = $hash{$key}[3];
1494 $fwdfwsettings{$fwdfwsettings{'grp1'}} = $hash{$key}[4];
1495 $fwdfwsettings{'grp2'} = $hash{$key}[5];
1496 $fwdfwsettings{$fwdfwsettings{'grp2'}} = $hash{$key}[6];
1497 $fwdfwsettings{'USE_SRC_PORT'} = $hash{$key}[7];
1498 $fwdfwsettings{'PROT'} = $hash{$key}[8];
1499 $fwdfwsettings{'ICMP_TYPES'} = $hash{$key}[9];
1500 $fwdfwsettings{'SRC_PORT'} = $hash{$key}[10];
1501 $fwdfwsettings{'USESRV'} = $hash{$key}[11];
1502 $fwdfwsettings{'TGT_PROT'} = $hash{$key}[12];
1503 $fwdfwsettings{'ICMP_TGT'} = $hash{$key}[13];
1504 $fwdfwsettings{'grp3'} = $hash{$key}[14];
1505 $fwdfwsettings{$fwdfwsettings{'grp3'}} = $hash{$key}[15];
1506 $fwdfwsettings{'ruleremark'} = $hash{$key}[16];
1507 $fwdfwsettings{'LOG'} = $hash{$key}[17];
1508 $fwdfwsettings{'TIME'} = $hash{$key}[18];
1509 $fwdfwsettings{'TIME_MON'} = $hash{$key}[19];
1510 $fwdfwsettings{'TIME_TUE'} = $hash{$key}[20];
1511 $fwdfwsettings{'TIME_WED'} = $hash{$key}[21];
1512 $fwdfwsettings{'TIME_THU'} = $hash{$key}[22];
1513 $fwdfwsettings{'TIME_FRI'} = $hash{$key}[23];
1514 $fwdfwsettings{'TIME_SAT'} = $hash{$key}[24];
1515 $fwdfwsettings{'TIME_SUN'} = $hash{$key}[25];
1516 $fwdfwsettings{'TIME_FROM'} = $hash{$key}[26];
1517 $fwdfwsettings{'TIME_TO'} = $hash{$key}[27];
1518 $fwdfwsettings{'USE_NAT'} = $hash{$key}[28];
1519 $fwdfwsettings{'nat'} = $hash{$key}[31]; #changed order
1520 $fwdfwsettings{$fwdfwsettings{'nat'}} = $hash{$key}[29];
1521 $fwdfwsettings{'dnatport'} = $hash{$key}[30];
1522 $checked{'grp1'}{$fwdfwsettings{'grp1'}} = 'CHECKED';
1523 $checked{'grp2'}{$fwdfwsettings{'grp2'}} = 'CHECKED';
1524 $checked{'grp3'}{$fwdfwsettings{'grp3'}} = 'CHECKED';
1525 $checked{'USE_SRC_PORT'}{$fwdfwsettings{'USE_SRC_PORT'}} = 'CHECKED';
1526 $checked{'USESRV'}{$fwdfwsettings{'USESRV'}} = 'CHECKED';
1527 $checked{'ACTIVE'}{$fwdfwsettings{'ACTIVE'}} = 'CHECKED';
1528 $checked{'LOG'}{$fwdfwsettings{'LOG'}} = 'CHECKED';
1529 $checked{'TIME'}{$fwdfwsettings{'TIME'}} = 'CHECKED';
1530 $checked{'TIME_MON'}{$fwdfwsettings{'TIME_MON'}} = 'CHECKED';
1531 $checked{'TIME_TUE'}{$fwdfwsettings{'TIME_TUE'}} = 'CHECKED';
1532 $checked{'TIME_WED'}{$fwdfwsettings{'TIME_WED'}} = 'CHECKED';
1533 $checked{'TIME_THU'}{$fwdfwsettings{'TIME_THU'}} = 'CHECKED';
1534 $checked{'TIME_FRI'}{$fwdfwsettings{'TIME_FRI'}} = 'CHECKED';
1535 $checked{'TIME_SAT'}{$fwdfwsettings{'TIME_SAT'}} = 'CHECKED';
1536 $checked{'TIME_SUN'}{$fwdfwsettings{'TIME_SUN'}} = 'CHECKED';
1537 $checked{'USE_NAT'}{$fwdfwsettings{'USE_NAT'}} = 'CHECKED';
1538 $checked{'nat'}{$fwdfwsettings{'nat'}} = 'CHECKED';
1539 $selected{'TIME_FROM'}{$fwdfwsettings{'TIME_FROM'}} = 'selected';
1540 $selected{'TIME_TO'}{$fwdfwsettings{'TIME_TO'}} = 'selected';
1541 $selected{'ipfire'}{$fwdfwsettings{$fwdfwsettings{'grp2'}}} ='selected';
1542 $selected{'ipfire_src'}{$fwdfwsettings{$fwdfwsettings{'grp1'}}} ='selected';
1545 $fwdfwsettings{'oldgrp1a'}=$fwdfwsettings{'grp1'};
1546 $fwdfwsettings{'oldgrp1b'}=$fwdfwsettings{$fwdfwsettings{'grp1'}};
1547 $fwdfwsettings{'oldgrp2a'}=$fwdfwsettings{'grp2'};
1548 $fwdfwsettings{'oldgrp2b'}=$fwdfwsettings{$fwdfwsettings{'grp2'}};
1549 $fwdfwsettings{'oldgrp3a'}=$fwdfwsettings{'grp3'};
1550 $fwdfwsettings{'oldgrp3b'}=$fwdfwsettings{$fwdfwsettings{'grp3'}};
1551 $fwdfwsettings{'oldusesrv'}=$fwdfwsettings{'USESRV'};
1552 $fwdfwsettings{'oldruleremark'}=$fwdfwsettings{'ruleremark'};
1553 $fwdfwsettings{'oldnat'}=$fwdfwsettings{'USE_NAT'};
1554 $fwdfwsettings{'oldruletype'}=$fwdfwsettings{'chain'};
1555 #check if manual ip (source) is orange network
1556 if ($fwdfwsettings{'grp1'} eq 'src_addr'){
1557 my ($sip,$scidr) = split("/",$fwdfwsettings{$fwdfwsettings{'grp1'}});
1558 if ( &General
::IpInSubnet
($sip,$netsettings{'ORANGE_ADDRESS'},$netsettings{'ORANGE_NETMASK'})){
1559 $fwdfwsettings{'oldorange'} ='on';
1563 $fwdfwsettings{'ACTIVE'}='ON';
1564 $fwdfwsettings{'nat'} = 'dnat';
1565 $checked{'ACTIVE'}{$fwdfwsettings{'ACTIVE'}} = 'CHECKED';
1566 $checked{'nat'}{$fwdfwsettings{'nat'}} = 'CHECKED';
1567 $fwdfwsettings{'oldgrp1a'}=$fwdfwsettings{'grp1'};
1568 $fwdfwsettings{'oldgrp1b'}=$fwdfwsettings{$fwdfwsettings{'grp1'}};
1569 $fwdfwsettings{'oldgrp2a'}=$fwdfwsettings{'grp2'};
1570 $fwdfwsettings{'oldgrp2b'}=$fwdfwsettings{$fwdfwsettings{'grp2'}};
1571 $fwdfwsettings{'oldgrp3a'}=$fwdfwsettings{'grp3'};
1572 $fwdfwsettings{'oldgrp3b'}=$fwdfwsettings{$fwdfwsettings{'grp3'}};
1573 $fwdfwsettings{'oldusesrv'}=$fwdfwsettings{'USESRV'};
1574 $fwdfwsettings{'oldruleremark'}=$fwdfwsettings{'ruleremark'};
1575 $fwdfwsettings{'oldnat'}=$fwdfwsettings{'USE_NAT'};
1576 #check if manual ip (source) is orange network
1577 if ($fwdfwsettings{'grp1'} eq 'src_addr'){
1578 my ($sip,$scidr) = split("/",$fwdfwsettings{$fwdfwsettings{'grp1'}});
1579 if ( &General
::IpInSubnet
($sip,$netsettings{'ORANGE_ADDRESS'},$netsettings{'ORANGE_NETMASK'})){
1580 $fwdfwsettings{'oldorange'} ='on';
1584 # Split manual source and target address and delete the subnet
1585 my ($sip,$scidr) = split("/",$fwdfwsettings{$fwdfwsettings{'grp1'}});
1586 if ($scidr eq '32'){$fwdfwsettings{$fwdfwsettings{'grp1'}}=$sip;}
1587 my ($dip,$dcidr) = split("/",$fwdfwsettings{$fwdfwsettings{'grp2'}});
1588 if ($dcidr eq '32'){$fwdfwsettings{$fwdfwsettings{'grp2'}}=$dip;}
1589 &Header
::openbox
('100%', 'left', $Lang::tr
{'fwdfw source'});
1590 #------SOURCE-------------------------------------------------------
1591 print "<form method='post'>";
1593 <table width='100%' border='0'>
1594 <tr><td width='1%'><input type='radio' name='grp1' value='src_addr' checked></td><td width='60%'>$Lang::tr{'fwdfw sourceip'}<input type='TEXT' name='src_addr' value='$fwdfwsettings{'src_addr'}' size='16' maxlength='18' ></td><td width='1%'><input type='radio' name='grp1' id='ipfire_src' value='ipfire_src' $checked{'grp1'}{'ipfire_src'}></td><td><b>Firewall</b></td>
1596 print"<td align='right'><select name='ipfire_src' style='width:200px;'>";
1597 print "<option value='ALL' $selected{'ipfire_src'}{'ALL'}>$Lang::tr{'all'}</option>";
1598 print "<option value='GREEN' $selected{'ipfire_src'}{'GREEN'}>$Lang::tr{'green'} ($ifaces{'GREEN_ADDRESS'})</option>" if $ifaces{'GREEN_ADDRESS'};
1599 print "<option value='ORANGE' $selected{'ipfire_src'}{'ORANGE'}>$Lang::tr{'orange'} ($ifaces{'ORANGE_ADDRESS'})</option>" if (&Header
::orange_used
());
1600 print "<option value='BLUE' $selected{'ipfire_src'}{'BLUE'}>$Lang::tr{'blue'} ($ifaces{'BLUE_ADDRESS'})</option>" if (&Header
::blue_used
());
1601 print "<option value='RED1' $selected{'ipfire_src'}{'RED1'}>$Lang::tr{'red1'} ($redip)" if ($redip);
1602 if (! -z
"${General::swroot}/ethernet/aliases"){
1603 foreach my $alias (sort keys %aliases)
1605 print "<option value='$alias' $selected{'ipfire'}{$alias}>$alias</option>";
1610 <tr><td><br></td></tr>
1613 &gen_dd_block
('src','grp1');
1614 &Header
::closebox
();
1616 #---SNAT / DNAT ------------------------------------------------
1617 &Header
::openbox
('100%', 'left', 'NAT');
1620 <input type='checkbox' name='USE_NAT' id='USE_NAT' value="ON" $checked{'USE_NAT'}{'ON'}>
1621 $Lang::tr{'fwdfw use nat'}
1624 <table width='100%' border='0'>
1626 <td width='5%'></td>
1629 <input type='radio' name='nat' value='dnat' $checked{'nat'}{'dnat'}>
1630 $Lang::tr{'fwdfw dnat'}
1637 <td width='25%' align='right'>$Lang::tr{'dnat address'}:</td>
1639 <select name='dnat' style='width: 100%;'>
1640 <option value='Default IP' $selected{'dnat'}{'Default IP'}>$Lang::tr{'default ip'} ($netsettings{'RED_ADDRESS'})</option>
1642 foreach my $alias (sort keys %aliases) {
1643 print "<option value='$alias' $selected{'dnat'}{$alias}>$alias ($aliases{$alias}{'IPT'})</option>";
1649 <td colspan="2" width='55%'>
1650 <input type='hidden' name='dnat' value='Default IP'>
1659 <td width='5%'></td>
1662 <input type='radio' name='nat' value='snat' $checked{'nat'}{'snat'}>
1663 $Lang::tr{'fwdfw snat'}
1666 <td width='25%' align='right'>$Lang::tr{'snat new source ip address'}:</td>
1668 <select name='snat' style='width: 100%;'>
1671 foreach my $alias (sort keys %aliases) {
1672 print "<option value='$alias' $selected{'snat'}{$alias}>$alias ($aliases{$alias}{'IPT'})</option>";
1675 # XXX this is composed in a very ugly fashion
1676 foreach my $network (sort keys %defaultNetworks) {
1677 next if($defaultNetworks{$network}{'NAME'} eq "IPFire");
1678 next if($defaultNetworks{$network}{'NAME'} eq "ALL");
1679 next if($defaultNetworks{$network}{'NAME'} =~ /OpenVPN/i);
1680 next if($defaultNetworks{$network}{'NAME'} =~ /IPsec/i);
1682 print "<option value='$defaultNetworks{$network}{'NAME'}'";
1683 print " selected='selected'" if ($fwdfwsettings{$fwdfwsettings{'nat'}} eq $defaultNetworks{$network}{'NAME'});
1684 print ">$network ($defaultNetworks{$network}{'NET'})</option>";
1694 &Header
::closebox
();
1696 #---TARGET------------------------------------------------------
1697 &Header
::openbox
('100%', 'left', $Lang::tr
{'fwdfw target'});
1699 <table width='100%' border='0'>
1700 <tr><td width='1%'><input type='radio' name='grp2' value='tgt_addr' checked></td><td width='60%' nowrap='nowrap'>$Lang::tr{'fwdfw targetip'}<input type='TEXT' name='tgt_addr' value='$fwdfwsettings{'tgt_addr'}' size='16' maxlength='18'><td width='1%'><input type='radio' name='grp2' id='ipfire' value='ipfire' $checked{'grp2'}{'ipfire'}></td><td><b>Firewall</b></td>
1702 print"<td align='right'><select name='ipfire' style='width:200px;'>";
1703 print "<option value='ALL' $selected{'ipfire'}{'ALL'}>$Lang::tr{'all'}</option>";
1704 print "<option value='GREEN' $selected{'ipfire'}{'GREEN'}>$Lang::tr{'green'} ($ifaces{'GREEN_ADDRESS'})</option>" if $ifaces{'GREEN_ADDRESS'};
1705 print "<option value='ORANGE' $selected{'ipfire'}{'ORANGE'}>$Lang::tr{'orange'} ($ifaces{'ORANGE_ADDRESS'})</option>" if (&Header
::orange_used
());
1706 print "<option value='BLUE' $selected{'ipfire'}{'BLUE'}>$Lang::tr{'blue'} ($ifaces{'BLUE_ADDRESS'})</option>"if (&Header
::blue_used
());
1707 print "<option value='RED1' $selected{'ipfire'}{'RED1'}>$Lang::tr{'red1'} ($redip)" if ($redip);
1708 if (! -z
"${General::swroot}/ethernet/aliases"){
1709 foreach my $alias (sort keys %aliases)
1711 print "<option value='$alias' $selected{'ipfire'}{$alias}>$alias</option>";
1716 <tr><td><br></td></tr></table>
1718 &gen_dd_block
('tgt','grp2');
1720 #---PROTOCOL------------------------------------------------------
1721 $fwdfwsettings{'SRC_PORT'} =~ s/\|/,/g;
1722 $fwdfwsettings{'TGT_PORT'} =~ s/\|/,/g;
1723 $fwdfwsettings{'dnatport'} =~ tr/|/,/;
1725 # The dnatport may be empty, if it matches TGT_PORT
1726 if ($fwdfwsettings{'dnatport'} eq $fwdfwsettings{'TGT_PORT'}) {
1727 $fwdfwsettings{'dnatport'} = "";
1730 &Header
::openbox
('100%', 'left', $Lang::tr
{'fwhost prot'});
1731 #Fix Protocol for JQuery
1732 if ($fwdfwsettings{'grp3'} eq 'cust_srv' || $fwdfwsettings{'grp3'} eq 'cust_srvgrp'){
1733 $fwdfwsettings{'PROT'} = 'template';
1736 <table width='100%' border='0'>
1739 <select name='PROT' id='protocol' style="width: 95px;">
1741 print "<option value=\"\"";
1742 if ($fwdfwsettings{'PROT'} eq '') {
1743 print " selected=\"selected\"";
1745 print ">$Lang::tr{'all'}</option>";
1747 print "<option value=\"template\"";
1748 print " selected=\"selected\"" if ($fwdfwsettings{'grp3'} eq 'cust_srv' || $fwdfwsettings{'grp3'} eq 'cust_srvgrp');
1749 print ">- $Lang::tr{'template'} -</option>";
1751 foreach (@PROTOCOLS) {
1752 print"<option value=\"$_\"";
1753 if ($_ eq $fwdfwsettings{'PROT'}) {
1754 print " selected=\"selected\"";
1757 print ">$Lang::tr{'fwdfw prot41'}</option>";
1759 print ">$_</option>";
1767 <table width='100%' border='0' id="PROTOCOL_ICMP_TYPES">
1769 <td width='20%'>$Lang::tr{'fwhost icmptype'}</td>
1771 <select name='ICMP_TYPES' style='min-width:230px;'>
1773 &General
::readhasharray
("${General::swroot}/fwhosts/icmp-types", \
%icmptypes);
1774 print"<option value='All ICMP-Types'>$Lang::tr{'fwdfw all icmp'}</option>";
1775 foreach my $key (sort { ncmp
($icmptypes{$a}[0],$icmptypes{$b}[0]) }keys %icmptypes){
1776 if($fwdfwsettings{'ICMP_TYPES'} eq "$icmptypes{$key}[0]"){
1777 print"<option selected>$icmptypes{$key}[0] ($icmptypes{$key}[1])</option>";
1779 print"<option>$icmptypes{$key}[0] ($icmptypes{$key}[1])</option>";
1789 <table width="100%" border="0" id="PROTOCOL_PORTS">
1791 <!-- #SOURCEPORT -->
1793 $Lang::tr{'fwdfw use srcport'}
1796 <input type='text' name='SRC_PORT' value='$fwdfwsettings{'SRC_PORT'}' maxlength='20' size='18'>
1801 <!-- #TARGETPORT -->
1803 $Lang::tr{'fwdfw use srv'}
1807 <input type='text' name='TGT_PORT' value='$fwdfwsettings{'TGT_PORT'}' maxlength='20' size='18'>
1811 <td colspan='3'></td>
1812 <td>$Lang::tr{'fwdfw external port nat'}:</td>
1814 <input type='text' name='dnatport' value=\"$fwdfwsettings{'dnatport'}\" maxlength='20' size='18'>
1819 <table width="100%" border="0" id="PROTOCOL_TEMPLATE">
1822 <input type='radio' name='grp3' id='cust_srv' value='cust_srv' checked>
1823 $Lang::tr{'fwhost cust service'}
1826 <select name='cust_srv' style='min-width: 230px;'>
1829 &General
::readhasharray
("$configsrv", \
%customservice);
1830 foreach my $key (sort { ncmp
($customservice{$a}[0],$customservice{$b}[0]) } keys %customservice){
1832 print"selected='selected'" if ($fwdfwsettings{$fwdfwsettings{'grp3'}} eq $customservice{$key}[0]);
1833 print"value='$customservice{$key}[0]'>$customservice{$key}[0]</option>";
1842 <input type='radio' name='grp3' id='cust_srvgrp' value='cust_srvgrp' $checked{'grp3'}{'cust_srvgrp'}>
1843 $Lang::tr{'fwhost cust srvgrp'}
1846 <select name='cust_srvgrp' style='min-width:230px;'>
1849 &General
::readhasharray
("$configsrvgrp", \
%customservicegrp);
1851 foreach my $key (sort { ncmp
($customservicegrp{$a}[0],$customservicegrp{$b}[0]) } keys %customservicegrp){
1852 if ($helper ne $customservicegrp{$key}[0] && $customservicegrp{$key}[2] ne 'none'){
1854 print"selected='selected'" if ($fwdfwsettings{$fwdfwsettings{'grp3'}} eq $customservicegrp{$key}[0]);
1855 print">$customservicegrp{$key}[0]</option>";
1857 $helper=$customservicegrp{$key}[0];
1871 $checked{"RULE_ACTION"}{$fwdfwsettings{'RULE_ACTION'}} = 'CHECKED';
1874 <table width="80%" class='tbl' id='actions'>
1876 <td width="33%" align="center" bgcolor="$color{'color17'}">
1879 <td width="33%" align="center" bgcolor="$color{'color25'}">
1882 <td width="33%" align="center" bgcolor="$color{'color16'}">
1887 <td width="33%" align="center">
1889 <input type="radio" name="RULE_ACTION" value="ACCEPT" $checked{"RULE_ACTION"}{"ACCEPT"}>
1890 <strong>$Lang::tr{'fwdfw ACCEPT'}</strong>
1893 <td width="33%" align="center">
1895 <input type="radio" name="RULE_ACTION" value="DROP" $checked{"RULE_ACTION"}{"DROP"}>
1896 <strong>$Lang::tr{'fwdfw DROP'}</strong>
1899 <td width="33%" align="center">
1901 <input type="radio" name="RULE_ACTION" value="REJECT" $checked{"RULE_ACTION"}{"REJECT"}>
1902 <strong>$Lang::tr{'fwdfw REJECT'}</strong>
1911 #---Activate/logging/remark-------------------------------------
1912 &Header
::openbox
('100%', 'left', $Lang::tr
{'fwdfw additional'});
1914 <table width='100%' border='0'>
1916 print"<tr><td width='12%'>$Lang::tr{'remark'}:</td><td width='88%' align='left'><input type='text' name='ruleremark' maxlength='255' value='$fwdfwsettings{'ruleremark'}' style='width:99%;'></td></tr>";
1917 if($fwdfwsettings{'updatefwrule'} eq 'on' || $fwdfwsettings{'copyfwrule'} eq 'on'){
1918 print "<tr><td width='12%'>$Lang::tr{'fwdfw rulepos'}:</td><td><select name='rulepos' >";
1919 for (my $count =1; $count <= $sum; $count++){
1920 print"<option value='$count' ";
1921 print"selected='selected'" if($fwdfwsettings{'oldrulenumber'} eq $count);
1922 print">$count</option>";
1924 print"</select></td></tr>";
1926 print "<tr><td width='12%'>$Lang::tr{'fwdfw rulepos'}:</td><td><input type='text' name='rulepos' size='2'></td></tr>";
1931 <table width='100%'>
1935 if ($fwdfwsettings{'updatefwrule'} eq 'on') {
1938 <input type='checkbox' name='ACTIVE' value="ON" $checked{'ACTIVE'}{'ON'}>
1940 <td>$Lang::tr{'fwdfw rule activate'}</td>
1945 <input type="hidden" name="ACTIVE" value="ON">
1954 <input type='checkbox' name='LOG' value='ON' $checked{'LOG'}{'ON'}>
1956 <td>$Lang::tr{'fwdfw log rule'}</td>
1960 <input type='checkbox' name='TIME' id="USE_TIME_CONSTRAINTS" value='ON' $checked{'TIME'}{'ON'}>
1962 <td>$Lang::tr{'fwdfw timeframe'}</td>
1964 <tr id="TIME_CONSTRAINTS">
1966 <table width="66%" border="0">
1968 <td width="8em"> </td>
1969 <td align="center">$Lang::tr{'advproxy monday'}</td>
1970 <td align="center">$Lang::tr{'advproxy tuesday'}</td>
1971 <td align="center">$Lang::tr{'advproxy wednesday'}</td>
1972 <td align="center">$Lang::tr{'advproxy thursday'}</td>
1973 <td align="center">$Lang::tr{'advproxy friday'}</td>
1974 <td align="center">$Lang::tr{'advproxy saturday'}</td>
1975 <td align="center">$Lang::tr{'advproxy sunday'}</td>
1979 <td width="8em"> </td>
1980 <td align="center"><input type='checkbox' name='TIME_MON' value='on' $checked{'TIME_MON'}{'on'} ></td>
1981 <td align="center"><input type='checkbox' name='TIME_TUE' value='on' $checked{'TIME_TUE'}{'on'} ></td>
1982 <td align="center"><input type='checkbox' name='TIME_WED' value='on' $checked{'TIME_WED'}{'on'} ></td>
1983 <td align="center"><input type='checkbox' name='TIME_THU' value='on' $checked{'TIME_THU'}{'on'} ></td>
1984 <td align="center"><input type='checkbox' name='TIME_FRI' value='on' $checked{'TIME_FRI'}{'on'} ></td>
1985 <td align="center"><input type='checkbox' name='TIME_SAT' value='on' $checked{'TIME_SAT'}{'on'} ></td>
1986 <td align="center"><input type='checkbox' name='TIME_SUN' value='on' $checked{'TIME_SUN'}{'on'} ></td>
1988 <select name='TIME_FROM'>
1990 for (my $i=0;$i<=23;$i++) {
1991 $i = sprintf("%02s",$i);
1992 for (my $j=0;$j<=45;$j+=15) {
1993 $j = sprintf("%02s",$j);
1994 my $time = $i.":".$j;
1995 print "<option $selected{'TIME_FROM'}{$time}>$i:$j</option>\n";
2000 <select name='TIME_TO'>
2002 for (my $i=0;$i<=23;$i++) {
2003 $i = sprintf("%02s",$i);
2004 for (my $j=0;$j<=45;$j+=15) {
2005 $j = sprintf("%02s",$j);
2006 my $time = $i.":".$j;
2007 print "<option $selected{'TIME_TO'}{$time}>$i:$j</option>\n";
2021 #---ACTION------------------------------------------------------
2022 if($fwdfwsettings{'updatefwrule'} ne 'on'){
2024 <table border='0' width='100%'>
2025 <tr><td align='right'><input type='submit' value='$Lang::tr{'add'}' style='min-width:100px;' />
2026 <input type='hidden' name='config' value='$config' >
2027 <input type='hidden' name='ACTION' value='saverule' ></form>
2028 <form method='post' style='display:inline;'><input type='submit' value='$Lang::tr{'fwhost back'}' style='min-width:100px;'><input type='hidden' name='ACTION' value='reset'></form></td></tr>
2034 <table border='0' width='100%'>
2035 <tr><td align='right'><input type='submit' value='$Lang::tr{'fwdfw change'}' style='min-width:100px;' /><input type='hidden' name='updatefwrule' value='$fwdfwsettings{'updatefwrule'}'><input type='hidden' name='key' value='$fwdfwsettings{'key'}'>
2036 <input type='hidden' name='oldgrp1a' value='$fwdfwsettings{'oldgrp1a'}' />
2037 <input type='hidden' name='oldgrp1b' value='$fwdfwsettings{'oldgrp1b'}' />
2038 <input type='hidden' name='oldgrp2a' value='$fwdfwsettings{'oldgrp2a'}' />
2039 <input type='hidden' name='oldgrp2b' value='$fwdfwsettings{'oldgrp2b'}' />
2040 <input type='hidden' name='oldgrp3a' value='$fwdfwsettings{'oldgrp3a'}' />
2041 <input type='hidden' name='oldgrp3b' value='$fwdfwsettings{'oldgrp3b'}' />
2042 <input type='hidden' name='oldusesrv' value='$fwdfwsettings{'oldusesrv'}' />
2043 <input type='hidden' name='oldrulenumber' value='$fwdfwsettings{'oldrulenumber'}' />
2044 <input type='hidden' name='rulenumber' value='$fwdfwsettings{'rulepos'}' />
2045 <input type='hidden' name='oldruleremark' value='$fwdfwsettings{'oldruleremark'}' />
2046 <input type='hidden' name='oldorange' value='$fwdfwsettings{'oldorange'}' />
2047 <input type='hidden' name='oldnat' value='$fwdfwsettings{'oldnat'}' />
2048 <input type='hidden' name='oldruletype' value='$fwdfwsettings{'oldruletype'}' />
2049 <input type='hidden' name='ACTION' value='saverule' ></form><form method='post' style='display:inline'><input type='submit' value='$Lang::tr{'fwhost back'}' style='min-width:100px;'><input type='hidden' name='ACTION' value'reset'></td></td>
2053 &Header
::closebox
();
2059 &General
::readhasharray
($fwdfwsettings{'config'}, \
%uphash);
2060 foreach my $key (sort keys %uphash){
2061 if ($key eq $fwdfwsettings{'key'}) {
2063 if (exists $uphash{$last}){
2065 foreach my $y (0 .. $#{$uphash{$last}}) {
2066 $tmp{0}[$y] = $uphash{$last}[$y];
2068 #copy active rule to last
2069 foreach my $i (0 .. $#{$uphash{$last}}) {
2070 $uphash{$last}[$i] = $uphash{$key}[$i];
2072 #copy saved rule to actual position
2073 foreach my $x (0 .. $#{$tmp{0}}) {
2074 $uphash{$key}[$x] = $tmp{0}[$x];
2079 &General
::writehasharray
($fwdfwsettings{'config'}, \
%uphash);
2080 &General
::firewall_config_changed
();
2086 &General
::readhasharray
($fwdfwsettings{'config'}, \
%downhash);
2087 foreach my $key (sort keys %downhash){
2088 if ($key eq $fwdfwsettings{'key'}) {
2089 my $next = $key + 1;
2090 if (exists $downhash{$next}){
2092 foreach my $y (0 .. $#{$downhash{$next}}) {
2093 $tmp{0}[$y] = $downhash{$next}[$y];
2095 #copy active rule to next
2096 foreach my $i (0 .. $#{$downhash{$next}}) {
2097 $downhash{$next}[$i] = $downhash{$key}[$i];
2099 #copy saved rule to actual position
2100 foreach my $x (0 .. $#{$tmp{0}}) {
2101 $downhash{$key}[$x] = $tmp{0}[$x];
2106 &General
::writehasharray
($fwdfwsettings{'config'}, \
%downhash);
2107 &General
::firewall_config_changed
();
2113 &General
::readhasharray
("$config", $hash);
2114 if (!$errormessage){
2115 ################################################################
2116 #check if we change an INPUT rule to a OUTGOING
2117 if($fwdfwsettings{'oldruletype'} eq 'INPUTFW' && $fwdfwsettings{'chain'} eq 'OUTGOINGFW' ){
2118 &changerule
($configinput);
2121 #check if we change an INPUT rule to a FORWARD
2122 elsif($fwdfwsettings{'oldruletype'} eq 'INPUTFW' && $fwdfwsettings{'chain'} eq 'FORWARDFW' ){
2123 &changerule
($configinput);
2126 ################################################################
2127 #check if we change an OUTGOING rule to an INPUT
2128 elsif($fwdfwsettings{'oldruletype'} eq 'OUTGOINGFW' && $fwdfwsettings{'chain'} eq 'INPUTFW' ){
2129 &changerule
($configoutgoing);
2132 #check if we change an OUTGOING rule to a FORWARD
2133 elsif($fwdfwsettings{'oldruletype'} eq 'OUTGOINGFW' && $fwdfwsettings{'chain'} eq 'FORWARDFW' ){
2134 &changerule
($configoutgoing);
2137 ################################################################
2138 #check if we change a FORWARD rule to an INPUT
2139 elsif($fwdfwsettings{'oldruletype'} eq 'FORWARDFW' && $fwdfwsettings{'chain'} eq 'INPUTFW'){
2140 &changerule
($configfwdfw);
2143 #check if we change a FORWARD rule to an OUTGOING
2144 elsif($fwdfwsettings{'oldruletype'} eq 'FORWARDFW' && $fwdfwsettings{'chain'} eq 'OUTGOINGFW'){
2145 &changerule
($configfwdfw);
2148 $fwdfwsettings{'ruleremark'}=~ s/,/;/g;
2149 utf8
::decode
($fwdfwsettings{'ruleremark'});
2150 $fwdfwsettings{'ruleremark'}=&Header
::escape
($fwdfwsettings{'ruleremark'});
2151 if ($fwdfwsettings{'updatefwrule'} ne 'on'){
2152 my $key = &General
::findhasharraykey
($hash);
2153 $$hash{$key}[0] = $fwdfwsettings{'RULE_ACTION'};
2154 $$hash{$key}[1] = $fwdfwsettings{'chain'};
2155 $$hash{$key}[2] = $fwdfwsettings{'ACTIVE'};
2156 $$hash{$key}[3] = $fwdfwsettings{'grp1'};
2157 $$hash{$key}[4] = $fwdfwsettings{$fwdfwsettings{'grp1'}};
2158 $$hash{$key}[5] = $fwdfwsettings{'grp2'};
2159 $$hash{$key}[6] = $fwdfwsettings{$fwdfwsettings{'grp2'}};
2160 $$hash{$key}[7] = $fwdfwsettings{'USE_SRC_PORT'};
2161 $$hash{$key}[8] = $fwdfwsettings{'PROT'};
2162 $$hash{$key}[9] = $fwdfwsettings{'ICMP_TYPES'};
2163 $$hash{$key}[10] = $fwdfwsettings{'SRC_PORT'};
2164 $$hash{$key}[11] = $fwdfwsettings{'USESRV'};
2165 $$hash{$key}[12] = $fwdfwsettings{'TGT_PROT'};
2166 $$hash{$key}[13] = $fwdfwsettings{'ICMP_TGT'};
2167 $$hash{$key}[14] = $fwdfwsettings{'grp3'};
2168 $$hash{$key}[15] = $fwdfwsettings{$fwdfwsettings{'grp3'}};
2169 $$hash{$key}[16] = $fwdfwsettings{'ruleremark'};
2170 $$hash{$key}[17] = $fwdfwsettings{'LOG'};
2171 $$hash{$key}[18] = $fwdfwsettings{'TIME'};
2172 $$hash{$key}[19] = $fwdfwsettings{'TIME_MON'};
2173 $$hash{$key}[20] = $fwdfwsettings{'TIME_TUE'};
2174 $$hash{$key}[21] = $fwdfwsettings{'TIME_WED'};
2175 $$hash{$key}[22] = $fwdfwsettings{'TIME_THU'};
2176 $$hash{$key}[23] = $fwdfwsettings{'TIME_FRI'};
2177 $$hash{$key}[24] = $fwdfwsettings{'TIME_SAT'};
2178 $$hash{$key}[25] = $fwdfwsettings{'TIME_SUN'};
2179 $$hash{$key}[26] = $fwdfwsettings{'TIME_FROM'};
2180 $$hash{$key}[27] = $fwdfwsettings{'TIME_TO'};
2181 $$hash{$key}[28] = $fwdfwsettings{'USE_NAT'};
2182 $$hash{$key}[29] = $fwdfwsettings{$fwdfwsettings{'nat'}};
2183 $$hash{$key}[30] = $fwdfwsettings{'dnatport'};
2184 $$hash{$key}[31] = $fwdfwsettings{'nat'};
2185 &General
::writehasharray
("$config", $hash);
2187 foreach my $key (sort {$a <=> $b} keys %$hash){
2188 if($key eq $fwdfwsettings{'key'}){
2189 $$hash{$key}[0] = $fwdfwsettings{'RULE_ACTION'};
2190 $$hash{$key}[1] = $fwdfwsettings{'chain'};
2191 $$hash{$key}[2] = $fwdfwsettings{'ACTIVE'};
2192 $$hash{$key}[3] = $fwdfwsettings{'grp1'};
2193 $$hash{$key}[4] = $fwdfwsettings{$fwdfwsettings{'grp1'}};
2194 $$hash{$key}[5] = $fwdfwsettings{'grp2'};
2195 $$hash{$key}[6] = $fwdfwsettings{$fwdfwsettings{'grp2'}};
2196 $$hash{$key}[7] = $fwdfwsettings{'USE_SRC_PORT'};
2197 $$hash{$key}[8] = $fwdfwsettings{'PROT'};
2198 $$hash{$key}[9] = $fwdfwsettings{'ICMP_TYPES'};
2199 $$hash{$key}[10] = $fwdfwsettings{'SRC_PORT'};
2200 $$hash{$key}[11] = $fwdfwsettings{'USESRV'};
2201 $$hash{$key}[12] = $fwdfwsettings{'TGT_PROT'};
2202 $$hash{$key}[13] = $fwdfwsettings{'ICMP_TGT'};
2203 $$hash{$key}[14] = $fwdfwsettings{'grp3'};
2204 $$hash{$key}[15] = $fwdfwsettings{$fwdfwsettings{'grp3'}};
2205 $$hash{$key}[16] = $fwdfwsettings{'ruleremark'};
2206 $$hash{$key}[17] = $fwdfwsettings{'LOG'};
2207 $$hash{$key}[18] = $fwdfwsettings{'TIME'};
2208 $$hash{$key}[19] = $fwdfwsettings{'TIME_MON'};
2209 $$hash{$key}[20] = $fwdfwsettings{'TIME_TUE'};
2210 $$hash{$key}[21] = $fwdfwsettings{'TIME_WED'};
2211 $$hash{$key}[22] = $fwdfwsettings{