]>
git.ipfire.org Git - ipfire-2.x.git/blob - html/cgi-bin/fwhosts.cgi
953f81e5f9d6e9863cd54794baf8417eb53fd2ad
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 ###############################################################################
23 # enable only the following on debugging purpose
27 use CGI
::Carp
'fatalsToBrowser';
28 no warnings
'uninitialized';
29 require '/var/ipfire/general-functions.pl';
30 require '/var/ipfire/network-functions.pl';
31 require "/var/ipfire/location-functions.pl";
32 require "/usr/lib/firewall/firewall-lib.pl";
33 require "${General::swroot}/lang.pl";
34 require "${General::swroot}/header.pl";
36 my %fwhostsettings=();
41 my %customservicegrp=();
42 my %customlocationgrp=();
48 my %defaultNetworks=();
62 my $confignet = "${General::swroot}/fwhosts/customnetworks";
63 my $confighost = "${General::swroot}/fwhosts/customhosts";
64 my $configgrp = "${General::swroot}/fwhosts/customgroups";
65 my $configccdnet = "${General::swroot}/ovpn/ccd.conf";
66 my $configccdhost = "${General::swroot}/ovpn/ovpnconfig";
67 my $configipsec = "${General::swroot}/vpn/config";
68 my $configsrv = "${General::swroot}/fwhosts/customservices";
69 my $configsrvgrp = "${General::swroot}/fwhosts/customservicegrp";
70 my $configlocationgrp = "${General::swroot}/fwhosts/customlocationgrp";
71 my $fwconfigfwd = "${General::swroot}/firewall/config";
72 my $fwconfiginp = "${General::swroot}/firewall/input";
73 my $fwconfigout = "${General::swroot}/firewall/outgoing";
74 my $fwoptions = "${General::swroot}/optionsfw/settings";
75 my $configovpn = "${General::swroot}/ovpn/settings";
76 my $configipsecrw = "${General::swroot}/vpn/settings";
78 unless (-e
$confignet) { &General
::system("touch", "$confignet"); }
79 unless (-e
$confighost) { &General
::system("touch", "$confighost"); }
80 unless (-e
$configgrp) { &General
::system("touch", "$configgrp"); }
81 unless (-e
$configsrv) { &General
::system("touch", "$configsrv"); }
82 unless (-e
$configsrvgrp) { &General
::system("touch", "$configsrvgrp"); }
83 unless (-e
$configlocationgrp) { &General
::system("touch $configlocationgrp"); }
85 &General
::readhash
("${General::swroot}/main/settings", \
%mainsettings);
86 &General
::readhash
("/srv/web/ipfire/html/themes/ipfire/include/colors.txt", \
%color);
87 &General
::readhash
("${General::swroot}/ethernet/settings", \
%ownnet);
88 &General
::readhash
("$configovpn", \
%ovpnsettings);
89 &General
::readhasharray
("$configipsec", \
%ipsecconf);
90 &General
::readhash
("$configipsecrw", \
%ipsecsettings);
91 &General
::readhash
("/var/ipfire/ethernet/settings", \
%netsettings);
92 &General
::readhash
($fwoptions, \
%optionsfw);
94 &Header
::getcgihash
(\
%fwhostsettings);
95 &Header
::showhttpheaders
();
96 &Header
::openpage
($Lang::tr
{'fwhost menu'}, 1, '');
97 &Header
::openbigbox
('100%', 'center');
102 var PROTOCOLS_WITH_PORTS = ["TCP", "UDP"];
103 var update_protocol = function() {
104 var protocol = \$("#protocol").val();
106 if (protocol === undefined)
109 // Check if we are dealing with a protocol, that knows ports.
110 if (\$.inArray(protocol, PROTOCOLS_WITH_PORTS) >= 0) {
112 \$("#PROTOKOLL").hide();
115 \$("#PROTOKOLL").show();
119 \$(document).ready(function() {
120 var protocol = \$("#protocol").val();
121 \$("#protocol").change(update_protocol);
123 // Automatically select radio buttons when corresponding
124 // dropdown menu changes.
125 \$("select").change(function() {
126 var id = \$(this).attr("name");
127 \$('#' + id).prop("checked", true);
135 if ($fwhostsettings{'ACTION'} eq 'updatenet' )
137 &General
::readhasharray
("$confignet", \
%customnetwork);
138 foreach my $key (keys %customnetwork)
140 if($customnetwork{$key}[0] eq $fwhostsettings{'orgname'})
142 $fwhostsettings{'orgname'} = $customnetwork{$key}[0];
143 $fwhostsettings{'orgip'} = $customnetwork{$key}[1];
144 $fwhostsettings{'orgsub'} = $customnetwork{$key}[2];
145 $fwhostsettings{'netremark'} = $customnetwork{$key}[3];
146 $fwhostsettings{'count'} = $customnetwork{$key}[4];
147 delete $customnetwork{$key};
151 &General
::writehasharray
("$confignet", \
%customnetwork);
152 $fwhostsettings{'actualize'} = 'on';
153 $fwhostsettings{'ACTION'} = 'savenet';
155 if ($fwhostsettings{'ACTION'} eq 'updatehost')
158 &General
::readhasharray
("$confighost", \
%customhost);
159 foreach my $key (keys %customhost)
161 if($customhost{$key}[0] eq $fwhostsettings{'orgname'})
163 if ($customhost{$key}[1] eq 'ip'){
164 ($ip,$subnet) = split (/\//,$customhost{$key}[2]);
166 $ip = $customhost{$key}[2];
168 $fwhostsettings{'orgip'} = $ip;
169 $fwhostsettings{'count'} = $customhost{$key}[4];
170 delete $customhost{$key};
171 &General
::writehasharray
("$confighost", \
%customhost);
174 $fwhostsettings{'actualize'} = 'on';
175 if($fwhostsettings{'orgip'}){
176 $fwhostsettings{'ACTION'} = 'savehost';
178 $fwhostsettings{'ACTION'} = $Lang::tr
{'fwhost newhost'};
181 if ($fwhostsettings{'ACTION'} eq 'updateservice')
185 $errormessage=&checkports
(\
%customservice);
186 if ($fwhostsettings{'oldsrvname'} ne $fwhostsettings{'SRV_NAME'} && !&checkgroup
($fwhostsettings{'SRV_NAME'})){
187 $errormessage=$Lang::tr
{'fwhost err grpexist'};
190 &General
::readhasharray
("$configsrv", \
%customservice);
191 foreach my $key (keys %customservice)
193 if ($customservice{$key}[0] eq $fwhostsettings{'oldsrvname'})
195 delete $customservice{$key};
196 &General
::writehasharray
("$configsrv", \
%customservice);
200 if ($fwhostsettings{'PROT'} ne 'ICMP'){
201 $fwhostsettings{'ICMP_TYPES'}='BLANK';
203 my $key1 = &General
::findhasharraykey
(\
%customservice);
204 #find out short ICMP-TYPE
205 &General
::readhasharray
("${General::swroot}/fwhosts/icmp-types", \
%icmptypes);
206 foreach my $key (keys %icmptypes){
207 if ("$icmptypes{$key}[0] ($icmptypes{$key}[1])" eq $fwhostsettings{'ICMP_TYPES'}){
208 $fwhostsettings{'ICMP_TYPES'}=$icmptypes{$key}[0];
211 foreach my $i (0 .. 4) { $customservice{$key1}[$i] = "";}
212 $customservice{$key1}[0] = $fwhostsettings{'SRV_NAME'};
213 $customservice{$key1}[1] = $fwhostsettings{'SRV_PORT'};
214 $customservice{$key1}[2] = $fwhostsettings{'PROT'};
215 $customservice{$key1}[3] = $fwhostsettings{'ICMP_TYPES'};
216 &General
::writehasharray
("$configsrv", \
%customservice);
217 #check if we need to update firewallrules
218 if ($fwhostsettings{'SRV_NAME'} ne $fwhostsettings{'oldsrvname'}){
219 if ( ! -z
$fwconfigfwd ){
220 &General
::readhasharray
("$fwconfigfwd", \
%fwfwd);
221 foreach my $key (sort keys %fwfwd){
222 if ($fwfwd{$key}[15] eq $fwhostsettings{'oldsrvname'}){
223 $fwfwd{$key}[15] = $fwhostsettings{'SRV_NAME'};
226 &General
::writehasharray
("$fwconfigfwd", \
%fwfwd);
228 if ( ! -z
$fwconfiginp ){
229 &General
::readhasharray
("$fwconfiginp", \
%fwinp);
230 foreach my $line (sort keys %fwinp){
231 if ($fwfwd{$line}[15] eq $fwhostsettings{'oldsrvname'}){
232 $fwfwd{$line}[15] = $fwhostsettings{'SRV_NAME'};
235 &General
::writehasharray
("$fwconfiginp", \
%fwinp);
237 if ( ! -z
$fwconfigout ){
238 &General
::readhasharray
("$fwconfigout", \
%fwout);
239 foreach my $line (sort keys %fwout){
240 if ($fwout{$line}[15] eq $fwhostsettings{'oldsrvname'}){
241 $fwout{$line}[15] = $fwhostsettings{'SRV_NAME'};
244 &General
::writehasharray
("$fwconfigout", \
%fwout);
246 #check if we need to update groups
247 &General
::readhasharray
("$configsrvgrp", \
%customservicegrp);
248 foreach my $key (sort keys %customservicegrp){
249 if($customservicegrp{$key}[2] eq $fwhostsettings{'oldsrvname'}){
250 $customservicegrp{$key}[2] = $fwhostsettings{'SRV_NAME'};
251 &checkrulereload
($customservicegrp{$key}[0]);
254 &General
::writehasharray
("$configsrvgrp", \
%customservicegrp);
256 &checkrulereload
($fwhostsettings{'SRV_NAME'});
257 $fwhostsettings{'SRV_NAME'} = '';
258 $fwhostsettings{'SRV_PORT'} = '';
259 $fwhostsettings{'PROT'} = '';
260 $fwhostsettings{'ICMP'} = '';
261 $fwhostsettings{'oldsrvicmp'} = '';
262 $fwhostsettings{'updatesrv'} = '';
264 $fwhostsettings{'SRV_NAME'} = $fwhostsettings{'oldsrvname'};
265 $fwhostsettings{'SRV_PORT'} = $fwhostsettings{'oldsrvport'};
266 $fwhostsettings{'PROT'} = $fwhostsettings{'oldsrvprot'};
267 $fwhostsettings{'ICMP'} = $fwhostsettings{'oldsrvicmp'};
268 $fwhostsettings{'updatesrv'}= 'on';
273 if ($fwhostsettings{'ACTION'} eq 'savenet' )
276 if ($fwhostsettings{'orgname'} eq ''){$fwhostsettings{'orgname'}=$fwhostsettings{'HOSTNAME'};}
277 #check if all fields are set
278 if ($fwhostsettings{'HOSTNAME'} eq '' || $fwhostsettings{'IP'} eq '' || $fwhostsettings{'SUBNET'} eq '')
280 $errormessage=$errormessage.$Lang::tr
{'fwhost err empty'};
284 #convert ip if leading '0' exists
285 $fwhostsettings{'IP'} = &Network
::ip_remove_zero
($fwhostsettings{'IP'});
288 if (!&General
::validipandmask
($fwhostsettings{'IP'}."/".$fwhostsettings{'SUBNET'}))
290 $errormessage=$errormessage.$Lang::tr
{'fwhost err addr'};
291 $fwhostsettings{'BLK_HOST'} ='readonly';
292 $fwhostsettings{'NOCHECK'} ='false';
293 $fwhostsettings{'error'} ='on';
296 if ($fwhostsettings{'NETREMARK'} ne '' && !&validremark
($fwhostsettings{'NETREMARK'})){
297 $errormessage=$Lang::tr
{'fwhost err remark'};
298 $fwhostsettings{'error'} ='on';
300 #check if subnet is sigle host
301 if(&General
::iporsubtocidr
($fwhostsettings{'SUBNET'}) eq '32')
303 $errormessage=$errormessage.$Lang::tr
{'fwhost err sub32'};
305 if($fwhostsettings{'error'} ne 'on'){
306 my $fullip="$fwhostsettings{'IP'}/".&General
::iporsubtocidr
($fwhostsettings{'SUBNET'});
307 $errormessage=$errormessage.&General
::checksubnets
($fwhostsettings{'HOSTNAME'},$fullip,"","exact");
309 #only check plausi when no error till now
311 &plausicheck
("editnet");
313 if($fwhostsettings{'actualize'} eq 'on' && $fwhostsettings{'newnet'} ne 'on' && $errormessage)
315 $fwhostsettings{'actualize'} = '';
316 my $key = &General
::findhasharraykey
(\
%customnetwork);
317 foreach my $i (0 .. 3) { $customnetwork{$key}[$i] = "";}
318 $customnetwork{$key}[0] = $fwhostsettings{'orgname'} ;
319 $customnetwork{$key}[1] = $fwhostsettings{'orgip'} ;
320 $customnetwork{$key}[2] = $fwhostsettings{'orgsub'};
321 $customnetwork{$key}[3] = $fwhostsettings{'orgnetremark'};
322 &General
::writehasharray
("$confignet", \
%customnetwork);
323 undef %customnetwork;
326 &General
::readhasharray
("$confignet", \
%customnetwork);
327 if ($fwhostsettings{'ACTION'} eq 'updatenet'){
328 if ($fwhostsettings{'update'} == '0'){
329 foreach my $key (keys %customnetwork) {
330 if($customnetwork{$key}[0] eq $fwhostsettings{'orgname'}){
331 delete $customnetwork{$key};
337 #get count if actualize is 'on'
338 if($fwhostsettings{'actualize'} eq 'on'){
339 $fwhostsettings{'actualize'} = '';
340 #check if we need to reload rules
341 if($fwhostsettings{'orgip'} ne $fwhostsettings{'IP'}){
344 if ($fwhostsettings{'orgname'} ne $fwhostsettings{'HOSTNAME'}){
345 #check if we need to update groups
346 &General
::readhasharray
("$configgrp", \
%customgrp);
347 foreach my $key (sort keys %customgrp){
348 if($customgrp{$key}[2] eq $fwhostsettings{'orgname'}){
349 $customgrp{$key}[2]=$fwhostsettings{'HOSTNAME'};
353 &General
::writehasharray
("$configgrp", \
%customgrp);
354 #check if we need to update firewallrules
355 if ( ! -z
$fwconfigfwd ){
356 &General
::readhasharray
("$fwconfigfwd", \
%fwfwd);
357 foreach my $line (sort keys %fwfwd){
358 if ($fwfwd{$line}[4] eq $fwhostsettings{'orgname'}){
359 $fwfwd{$line}[4] = $fwhostsettings{'HOSTNAME'};
361 if ($fwfwd{$line}[6] eq $fwhostsettings{'orgname'}){
362 $fwfwd{$line}[6] = $fwhostsettings{'HOSTNAME'};
365 &General
::writehasharray
("$fwconfigfwd", \
%fwfwd);
367 if ( ! -z
$fwconfiginp ){
368 &General
::readhasharray
("$fwconfiginp", \
%fwinp);
369 foreach my $line (sort keys %fwinp){
370 if ($fwfwd{$line}[4] eq $fwhostsettings{'orgname'}){
371 $fwfwd{$line}[4] = $fwhostsettings{'HOSTNAME'};
374 &General
::writehasharray
("$fwconfiginp", \
%fwinp);
378 my $key = &General
::findhasharraykey
(\
%customnetwork);
379 foreach my $i (0 .. 3) { $customnetwork{$key}[$i] = "";}
380 $fwhostsettings{'SUBNET'} = &General
::iporsubtocidr
($fwhostsettings{'SUBNET'});
381 $customnetwork{$key}[0] = $fwhostsettings{'HOSTNAME'};
382 $customnetwork{$key}[1] = &General
::getnetworkip
($fwhostsettings{'IP'},$fwhostsettings{'SUBNET'}) ;
383 $customnetwork{$key}[2] = &General
::iporsubtodec
($fwhostsettings{'SUBNET'}) ;
384 $customnetwork{$key}[3] = $fwhostsettings{'NETREMARK'};
385 &General
::writehasharray
("$confignet", \
%customnetwork);
386 $fwhostsettings{'IP'}=$fwhostsettings{'IP'}."/".&General
::iporsubtodec
($fwhostsettings{'SUBNET'});
387 undef %customnetwork;
388 $fwhostsettings{'HOSTNAME'}='';
389 $fwhostsettings{'IP'}='';
390 $fwhostsettings{'SUBNET'}='';
391 $fwhostsettings{'NETREMARK'}='';
392 #check if an edited net affected groups and need to reload rules
393 if ($needrules eq 'on'){
394 &General
::firewall_config_changed
();
399 $fwhostsettings{'HOSTNAME'} = $fwhostsettings{'orgname'};
405 if ($fwhostsettings{'ACTION'} eq 'savehost')
408 if ($fwhostsettings{'orgname'} eq ''){$fwhostsettings{'orgname'}=$fwhostsettings{'HOSTNAME'};}
409 $fwhostsettings{'SUBNET'}='32';
410 #check if all fields are set
411 if ($fwhostsettings{'HOSTNAME'} eq '' || $fwhostsettings{'IP'} eq '' || $fwhostsettings{'SUBNET'} eq '')
413 $errormessage=$errormessage.$Lang::tr
{'fwhost err empty'};
414 $fwhostsettings{'ACTION'} = 'edithost';
416 if($fwhostsettings{'IP'}=~/^([0-9a-fA-F]{1,2}:){5}[0-9a-fA-F]{1,2}$/){
417 $fwhostsettings{'type'} = 'mac';
418 }elsif($fwhostsettings{'IP'}=~/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/){
419 $fwhostsettings{'type'} = 'ip';
421 $fwhostsettings{'type'} = '';
422 $errormessage=$Lang::tr
{'fwhost err ipmac'};
425 if ($fwhostsettings{'HOSTREMARK'} ne '' && !&validremark
($fwhostsettings{'HOSTREMARK'})){
426 $errormessage=$Lang::tr
{'fwhost err remark'};
429 if ($fwhostsettings{'type'} eq 'ip'){
430 #convert ip if leading '0' exists
431 $fwhostsettings{'IP'} = &Network
::ip_remove_zero
($fwhostsettings{'IP'});
434 if (rindex($fwhostsettings{'IP'},'/') eq '-1' ){
435 if($fwhostsettings{'type'} eq 'ip' && !&General
::validipandmask
($fwhostsettings{'IP'}."/32"))
437 $errormessage.=$errormessage.$Lang::tr
{'fwhost err ip'};
438 $fwhostsettings{'error'}='on';
440 }elsif(rindex($fwhostsettings{'IP'},'/') ne '-1' ){
441 $errormessage=$errormessage.$Lang::tr
{'fwhost err ipwithsub'};
442 $fwhostsettings{'error'}='on';
444 #check if net or broadcast
445 my @tmp= split (/\./,$fwhostsettings{'IP'});
446 if (($tmp[3] eq "0") || ($tmp[3] eq "255")){
447 $errormessage=$Lang::tr
{'fwhost err hostip'};
450 #only check plausi when no error till now
452 &plausicheck
("edithost");
454 if($fwhostsettings{'actualize'} eq 'on' && $fwhostsettings{'newhost'} ne 'on' && $errormessage){
455 $fwhostsettings{'actualize'} = '';
456 my $key = &General
::findhasharraykey
(\
%customhost);
457 foreach my $i (0 .. 3) { $customhost{$key}[$i] = "";}
458 $customhost{$key}[0] = $fwhostsettings{'orgname'} ;
459 $customhost{$key}[1] = $fwhostsettings{'type'} ;
460 if($customhost{$key}[1] eq 'ip'){
461 $customhost{$key}[2] = $fwhostsettings{'orgip'}."/".&General
::iporsubtodec
($fwhostsettings{'SUBNET'});
463 $customhost{$key}[2] = $fwhostsettings{'orgip'};
465 $customhost{$key}[3] = $fwhostsettings{'orgremark'};
466 &General
::writehasharray
("$confighost", \
%customhost);
470 #get count if host was edited
471 if($fwhostsettings{'actualize'} eq 'on'){
472 if($fwhostsettings{'orgip'} ne $fwhostsettings{'IP'}){
475 if($fwhostsettings{'orgname'} ne $fwhostsettings{'HOSTNAME'}){
476 #check if we need to update groups
477 &General
::readhasharray
("$configgrp", \
%customgrp);
478 foreach my $key (sort keys %customgrp){
479 if($customgrp{$key}[2] eq $fwhostsettings{'orgname'}){
480 $customgrp{$key}[2]=$fwhostsettings{'HOSTNAME'};
483 &General
::writehasharray
("$configgrp", \
%customgrp);
484 #check if we need to update firewallrules
485 if ( ! -z
$fwconfigfwd ){
486 &General
::readhasharray
("$fwconfigfwd", \
%fwfwd);
487 foreach my $line (sort keys %fwfwd){
488 if ($fwfwd{$line}[4] eq $fwhostsettings{'orgname'}){
489 $fwfwd{$line}[4] = $fwhostsettings{'HOSTNAME'};
491 if ($fwfwd{$line}[6] eq $fwhostsettings{'orgname'}){
492 $fwfwd{$line}[6] = $fwhostsettings{'HOSTNAME'};
495 &General
::writehasharray
("$fwconfigfwd", \
%fwfwd);
497 if ( ! -z
$fwconfiginp ){
498 &General
::readhasharray
("$fwconfiginp", \
%fwinp);
499 foreach my $line (sort keys %fwinp){
500 if ($fwfwd{$line}[4] eq $fwhostsettings{'orgname'}){
501 $fwfwd{$line}[4] = $fwhostsettings{'HOSTNAME'};
504 &General
::writehasharray
("$fwconfiginp", \
%fwinp);
508 my $key = &General
::findhasharraykey
(\
%customhost);
509 foreach my $i (0 .. 3) { $customhost{$key}[$i] = "";}
510 $customhost{$key}[0] = $fwhostsettings{'HOSTNAME'} ;
511 $customhost{$key}[1] = $fwhostsettings{'type'} ;
512 if ($fwhostsettings{'type'} eq 'ip'){
513 $customhost{$key}[2] = $fwhostsettings{'IP'}."/".&General
::iporsubtodec
($fwhostsettings{'SUBNET'});
515 $customhost{$key}[2] = $fwhostsettings{'IP'};
517 $customhost{$key}[3] = $fwhostsettings{'HOSTREMARK'};
518 &General
::writehasharray
("$confighost", \
%customhost);
520 $fwhostsettings{'HOSTNAME'}='';
521 $fwhostsettings{'IP'}='';
522 $fwhostsettings{'type'}='';
523 $fwhostsettings{'HOSTREMARK'}='';
524 #check if we need to update rules while host was edited
525 if($needrules eq 'on'){
526 &General
::firewall_config_changed
();
536 if ($fwhostsettings{'ACTION'} eq 'savegrp')
538 my $grp=$fwhostsettings{'grp_name'};
539 my $rem=$fwhostsettings{'remark'};
542 my $updcounter='off';
545 &General
::readhasharray
("$configgrp", \
%customgrp);
546 &General
::readhasharray
("$confignet", \
%customnetwork);
547 &General
::readhasharray
("$confighost", \
%customhost);
548 &General
::readhasharray
("$fwconfigfwd", \
%fwfwd);
549 &General
::readhasharray
("$fwconfiginp", \
%fwinp);
550 &General
::readhasharray
("$fwconfigout", \
%fwout);
552 if (!&validhostname
($grp)){$errormessage.=$Lang::tr
{'fwhost err name'};}
554 if (!&checkgroup
($grp) && $fwhostsettings{'update'} ne 'on'){$errormessage.=$Lang::tr
{'fwhost err grpexist'};}
556 if ($rem ne '' && !&validremark
($rem) && $fwhostsettings{'update'} ne 'on'){
557 $errormessage.=$Lang::tr
{'fwhost err remark'};
559 if ($fwhostsettings{'update'} eq 'on'){
560 #check standard networks
561 if ($fwhostsettings{'grp2'} eq 'std_net'){
562 @target=$fwhostsettings{'DEFAULT_SRC_ADR'};
563 $type='Standard Network';
565 #check custom networks
566 if ($fwhostsettings{'grp2'} eq 'cust_net' && $fwhostsettings{'CUST_SRC_NET'} ne ''){
567 @target=$fwhostsettings{'CUST_SRC_NET'};
569 $type='Custom Network';
570 }elsif($fwhostsettings{'grp2'} eq 'cust_net' && $fwhostsettings{'CUST_SRC_NET'} eq ''){
571 $errormessage=$Lang::tr
{'fwhost err groupempty'}."<br>";
572 $fwhostsettings{'grp_name'}='';
573 $fwhostsettings{'remark'}='';
575 #check custom addresses
576 if ($fwhostsettings{'grp2'} eq 'cust_host' && $fwhostsettings{'CUST_SRC_HOST'} ne ''){
577 @target=$fwhostsettings{'CUST_SRC_HOST'};
580 }elsif($fwhostsettings{'grp2'} eq 'cust_host' && $fwhostsettings{'CUST_SRC_HOST'} eq ''){
581 $errormessage=$Lang::tr
{'fwhost err groupempty'}."<br>";
582 $fwhostsettings{'grp_name'}='';
583 $fwhostsettings{'remark'}='';
585 # Fetch the address from a WireGuard Peer
586 if ($fwhostsettings{'grp2'} eq 'wg_peer' && $fwhostsettings{'WG_PEER'} ne ''){
587 @target=$fwhostsettings{'WG_PEER'};
589 }elsif ($fwhostsettings{'grp2'} eq 'wg_peer' && $fwhostsettings{'WG_PEER'} eq ''){
590 $errormessage=$Lang::tr
{'fwhost err groupempty'};
592 #get address from ovpn ccd static net
593 if ($fwhostsettings{'grp2'} eq 'ovpn_net' && $fwhostsettings{'OVPN_CCD_NET'} ne ''){
594 @target=$fwhostsettings{'OVPN_CCD_NET'};
595 $type='OpenVPN static network';
596 }elsif($fwhostsettings{'grp2'} eq 'ovpn_net' && $fwhostsettings{'OVPN_CCD_NET'} eq ''){
597 $errormessage=$Lang::tr
{'fwhost err groupempty'};
598 $fwhostsettings{'grp_name'}='';
599 $fwhostsettings{'remark'}='';
601 #get address from ovpn ccd static host
602 if ($fwhostsettings{'grp2'} eq 'ovpn_host' && $fwhostsettings{'OVPN_CCD_HOST'} ne ''){
603 @target=$fwhostsettings{'OVPN_CCD_HOST'};
604 $type='OpenVPN static host';
605 }elsif ($fwhostsettings{'grp2'} eq 'ovpn_host' && $fwhostsettings{'OVPN_CCD_HOST'} eq ''){
606 $errormessage=$Lang::tr
{'fwhost err groupempty'};
608 #get address from ovpn ccd Net-2-Net
609 if ($fwhostsettings{'grp2'} eq 'ovpn_n2n' && $fwhostsettings{'OVPN_N2N'} ne ''){
610 @target=$fwhostsettings{'OVPN_N2N'};
611 $type='OpenVPN N-2-N';
612 }elsif ($fwhostsettings{'grp2'} eq 'ovpn_n2n' && $fwhostsettings{'OVPN_N2N'} eq ''){
613 $errormessage=$Lang::tr
{'fwhost err groupempty'};
614 $fwhostsettings{'grp_name'}='';
615 $fwhostsettings{'remark'}='';
617 #get address from IPSEC HOST
618 if ($fwhostsettings{'grp2'} eq 'ipsec_host' && $fwhostsettings{'IPSEC_HOST'} ne ''){
619 @target=$fwhostsettings{'IPSEC_HOST'};
621 }elsif ($fwhostsettings{'grp2'} eq 'ipsec_host' && $fwhostsettings{'IPSEC_HOST'} eq ''){
622 $errormessage=$Lang::tr
{'fwhost err groupempty'};
623 $fwhostsettings{'grp_name'}='';
624 $fwhostsettings{'remark'}='';
626 #get address from IPSEC NETWORK
627 if ($fwhostsettings{'grp2'} eq 'ipsec_net' && $fwhostsettings{'IPSEC_NET'} ne ''){
628 @target=$fwhostsettings{'IPSEC_NET'};
629 $type='IpSec Network';
630 }elsif ($fwhostsettings{'grp2'} eq 'ipsec_net' && $fwhostsettings{'IPSEC_NET'} eq ''){
631 $errormessage=$Lang::tr
{'fwhost err groupempty'};
632 $fwhostsettings{'grp_name'}='';
633 $fwhostsettings{'remark'}='';
635 #check if host/net exists in grp
637 my $test="$grp,$fwhostsettings{'oldremark'},@target,$type";
638 foreach my $key (keys %customgrp) {
639 my $test1="$customgrp{$key}[0],$customgrp{$key}[1],$customgrp{$key}[2],$customgrp{$key}[3]";
640 if ($test1 eq $test){
641 $errormessage=$Lang::tr
{'fwhost err isingrp'};
642 $fwhostsettings{'update'} = 'on';
648 #on first save, we have an empty @target, so fill it with nothing
649 my $targetvalues=@target;
650 if ($targetvalues == '0'){
653 #on update, we have to delete the dummy entry
654 foreach my $key (keys %customgrp){
655 if ($customgrp{$key}[0] eq $grp && $customgrp{$key}[2] eq "none"){
656 delete $customgrp{$key};
660 &General
::writehasharray
("$configgrp", \
%customgrp);
661 &General
::readhasharray
("$configgrp", \
%customgrp);
662 #create array with new lines
663 foreach my $line (@target){
664 push (@newgrp,"$grp,$rem,$line");
667 my $key = &General
::findhasharraykey
(\
%customgrp);
668 foreach my $line (@newgrp){
669 foreach my $i (0 .. 3) { $customgrp{$key}[$i] = "";}
670 my ($a,$b,$c,$d) = split (",",$line);
671 $customgrp{$key}[0] = $a;
672 $customgrp{$key}[1] = $b;
673 $customgrp{$key}[2] = $c;
674 $customgrp{$key}[3] = $type;
676 &General
::writehasharray
("$configgrp", \
%customgrp);
677 #update counter in Host/Net
678 $fwhostsettings{'update'}='on';
680 #check if ruleupdate is needed
682 $netgrpcount=&getnetcount
($grp);
683 if($netgrpcount > 0 )
685 &General
::firewall_config_changed
();
690 if ($fwhostsettings{'ACTION'} eq 'savelocationgrp')
692 my $grp=$fwhostsettings{'grp_name'};
693 my $rem=$fwhostsettings{'remark'};
698 &General
::readhasharray
("$configlocationgrp", \
%customlocationgrp);
699 &General
::readhasharray
("$fwconfigfwd", \
%fwfwd);
700 &General
::readhasharray
("$fwconfiginp", \
%fwinp);
701 &General
::readhasharray
("$fwconfigout", \
%fwout);
704 if (!&validhostname
($grp)){$errormessage.=$Lang::tr
{'fwhost err name'};}
706 # Check for existing group name.
707 if (!&checkgroup
($grp) && $fwhostsettings{'update'} ne 'on'){
708 $errormessage = $Lang::tr
{'fwhost err grpexist'};
712 if ($rem ne '' && !&validremark
($rem) && $fwhostsettings{'update'} ne 'on'){
713 $errormessage = $Lang::tr
{'fwhost err remark'};
716 if ($fwhostsettings{'update'} eq 'on'){
717 @target=$fwhostsettings{'COUNTRY_CODE'};
718 $type='Location Group';
720 #check if host/net exists in grp
721 my $test="$grp,$fwhostsettings{'oldremark'},@target";
722 foreach my $key (keys %customlocationgrp) {
723 my $test1="$customlocationgrp{$key}[0],$customlocationgrp{$key}[1],$customlocationgrp{$key}[2]";
724 if ($test1 eq $test){
725 $errormessage=$Lang::tr
{'fwhost err isingrp'};
726 $fwhostsettings{'update'} = 'on';
732 #on first save, we have an empty @target, so fill it with nothing
733 my $targetvalues=@target;
734 if ($targetvalues == '0'){
737 #on update, we have to delete the dummy entry
738 foreach my $key (keys %customlocationgrp){
739 if ($customlocationgrp{$key}[0] eq $grp && $customlocationgrp{$key}[2] eq "none"){
740 delete $customlocationgrp{$key};
744 &General
::writehasharray
("$configlocationgrp", \
%customlocationgrp);
745 &General
::readhasharray
("$configlocationgrp", \
%customlocationgrp);
746 #create array with new lines
747 foreach my $line (@target){
748 push (@newgrp,"$grp,$rem,$line");
751 my $key = &General
::findhasharraykey
(\
%customlocationgrp);
752 foreach my $line (@newgrp){
753 foreach my $i (0 .. 3) { $customlocationgrp{$key}[$i] = "";}
754 my ($a,$b,$c,$d) = split (",",$line);
755 $customlocationgrp{$key}[0] = $a;
756 $customlocationgrp{$key}[1] = $b;
757 $customlocationgrp{$key}[2] = $c;
758 $customlocationgrp{$key}[3] = $type;
760 &General
::writehasharray
("$configlocationgrp", \
%customlocationgrp);
761 #update counter in Host/Net
762 $fwhostsettings{'update'}='on';
764 #check if ruleupdate is needed
765 my $locationgrpcount=0;
766 $locationgrpcount=&getlocationcount
($grp);
767 if($locationgrpcount > 0 )
769 &General
::firewall_config_changed
();
772 &viewtablelocationgrp
;
774 if ($fwhostsettings{'ACTION'} eq 'saveservice')
777 &General
::readhasharray
("$configsrv", \
%customservice );
778 &General
::readhasharray
("$configgrp", \
%customgrp);
779 $errormessage=&checkports
(\
%customservice);
780 if ($fwhostsettings{'PROT'} eq 'ICMP'){
781 &General
::readhasharray
("${General::swroot}/fwhosts/icmp-types", \
%icmptypes);
782 foreach my $key (keys %icmptypes){
783 if ("$icmptypes{$key}[0] ($icmptypes{$key}[1])" eq $fwhostsettings{'ICMP_TYPES'}){
784 $ICMP=$icmptypes{$key}[0];
788 if($ICMP eq ''){$ICMP=$fwhostsettings{'ICMP_TYPES'};}
789 if ($fwhostsettings{'PROT'} ne 'ICMP'){$ICMP='BLANK';}
790 #Check if a group with the same name already exists
791 if (!&checkgroup
($fwhostsettings{'SRV_NAME'})){
792 $errormessage = $Lang::tr
{'fwhost err grpexist'};
795 my $key = &General
::findhasharraykey
(\
%customservice);
796 foreach my $i (0 .. 4) { $customservice{$key}[$i] = "";}
797 $customservice{$key}[0] = $fwhostsettings{'SRV_NAME'};
798 $customservice{$key}[1] = $fwhostsettings{'SRV_PORT'};
799 $customservice{$key}[2] = $fwhostsettings{'PROT'};
800 $customservice{$key}[3] = $ICMP;
801 &General
::writehasharray
("$configsrv", \
%customservice );
803 $fwhostsettings{'SRV_NAME'}='';
804 $fwhostsettings{'SRV_PORT'}='';
805 $fwhostsettings{'PROT'}='';
806 $fwhostsettings{'ICMP_TYPES'}='';
810 if ($fwhostsettings{'ACTION'} eq 'saveservicegrp')
816 &General
::readhasharray
("$configsrvgrp", \
%customservicegrp );
817 &General
::readhasharray
("$configsrv", \
%customservice );
818 $errormessage=&checkservicegroup
;
819 #Check if we have more than 15 services from one Protocol in the group
820 #iptables can only handle 15 ports/portranges via multiport
821 foreach my $key (keys %customservicegrp){
822 if($customservicegrp{$key}[0] eq $fwhostsettings{'SRVGRP_NAME'}){
823 foreach my $key1 (keys %customservice){
824 $tcpcounter++ if $customservice{$key1}[2] eq 'TCP' && $customservicegrp{$key}[2] eq $customservice{$key1}[0];
825 $tcpcounter++ if $customservice{$key1}[2] eq 'TCP' && $customservicegrp{$key}[2] eq $customservice{$key1}[0] && $customservice{$key1}[1] =~m/:/i;
826 $udpcounter++ if $customservice{$key1}[2] eq 'UDP' && $customservicegrp{$key}[2] eq $customservice{$key1}[0];
827 $udpcounter++ if $customservice{$key1}[2] eq 'UDP' && $customservicegrp{$key}[2] eq $customservice{$key1}[0] && $customservice{$key1}[1] =~m/:/i;
832 # Loop through the hash of configured services.
833 foreach my $key (keys %customservice) {
834 # Assign nice human-readable values.
835 my $service_name = $customservice{$key}[0];
836 my $service_port = $customservice{$key}[1];
837 my $service_proto = $customservice{$key}[2];
839 # Skip services unless the processed one has found.
840 next unless $service_name eq $fwhostsettings{'CUST_SRV'};
842 # Increase the counters.
843 $tcpcounter++ if $service_proto eq 'TCP';
844 $tcpcounter++ if $service_proto eq 'TCP' && $service_port =~ m/:/i;
845 $udpcounter++ if $service_proto eq 'UDP';
846 $udpcounter++ if $service_proto eq 'UDP' && $service_port =~ m/:/i;
849 if ($tcpcounter > 15) {
850 $errormessage=$Lang::tr
{'fwhost err maxservicetcp'};
852 if ($udpcounter > 15) {
853 $errormessage=$Lang::tr
{'fwhost err maxserviceudp'};
858 if ($fwhostsettings{'SRVGRP_REMARK'} ne '' && !&validremark
($fwhostsettings{'SRVGRP_REMARK'})){
859 $errormessage .= $Lang::tr
{'fwhost err remark'};
861 #Check if there is already a service with the same name
862 if(!&checkservice
($fwhostsettings{'SRVGRP_NAME'})){
863 $errormessage .= $Lang::tr
{'fwhost err srv exists'};
866 #on first save, we have to enter a dummy value
867 if ($fwhostsettings{'CUST_SRV'} eq ''){
868 $fwhostsettings{'CUST_SRV'}='none';
870 #on update, we have to delete the dummy entry
871 foreach my $key (keys %customservicegrp){
872 if ($customservicegrp{$key}[2] eq 'none' && $customservicegrp{$key}[0] eq $fwhostsettings{'SRVGRP_NAME'}){
873 delete $customservicegrp{$key};
877 &General
::writehasharray
("$configsrvgrp", \
%customservicegrp );
878 #check if remark has also changed
879 if ($fwhostsettings{'SRVGRP_REMARK'} ne $fwhostsettings{'oldsrvgrpremark'} && $fwhostsettings{'updatesrvgrp'} eq 'on')
881 foreach my $key (keys %customservicegrp)
883 if($customservicegrp{$key}[0] eq $fwhostsettings{'SRVGRP_NAME'} && $customservicegrp{$key}[1] eq $fwhostsettings{'oldsrvgrpremark'})
885 $customservicegrp{$key}[1]='';
886 $customservicegrp{$key}[1]=$fwhostsettings{'SRVGRP_REMARK'};
890 my $key = &General
::findhasharraykey
(\
%customservicegrp);
891 foreach my $i (0 .. 2) { $customservice{$key}[$i] = "";}
892 $customservicegrp{$key}[0] = $fwhostsettings{'SRVGRP_NAME'};
893 $customservicegrp{$key}[1] = $fwhostsettings{'SRVGRP_REMARK'};
894 $customservicegrp{$key}[2] = $fwhostsettings{'CUST_SRV'};
895 &General
::writehasharray
("$configsrvgrp", \
%customservicegrp );
896 $fwhostsettings{'updatesrvgrp'}='on';
898 &checkrulereload
($fwhostsettings{'SRVGRP_NAME'});
900 &viewtableservicegrp
;
903 if ($fwhostsettings{'ACTION'} eq 'editnet')
908 if ($fwhostsettings{'ACTION'} eq 'edithost')
913 if ($fwhostsettings{'ACTION'} eq 'editgrp')
915 $fwhostsettings{'update'}='on';
919 if ($fwhostsettings{'ACTION'} eq 'editlocationgrp')
921 $fwhostsettings{'update'}='on';
923 &viewtablelocationgrp
;
925 if ($fwhostsettings{'ACTION'} eq 'editservice')
927 $fwhostsettings{'updatesrv'}='on';
930 if ($fwhostsettings{'ACTION'} eq 'editservicegrp')
932 $fwhostsettings{'updatesrvgrp'} = 'on';
934 &viewtableservicegrp
;
937 if ($fwhostsettings{'ACTION'} eq 'resetnet')
939 $fwhostsettings{'HOSTNAME'} ="";
940 $fwhostsettings{'IP'} ="";
941 $fwhostsettings{'SUBNET'} ="";
944 if ($fwhostsettings{'ACTION'} eq 'resethost')
946 $fwhostsettings{'HOSTNAME'} ="";
947 $fwhostsettings{'IP'} ="";
948 $fwhostsettings{'type'} ="";
951 if ($fwhostsettings{'ACTION'} eq 'resetgrp')
953 $fwhostsettings{'grp_name'} ="";
954 $fwhostsettings{'remark'} ="";
957 if ($fwhostsettings{'ACTION'} eq 'resetlocationgrp')
959 $fwhostsettings{'grp_name'} ="";
960 $fwhostsettings{'remark'} ="";
964 if ($fwhostsettings{'ACTION'} eq 'delnet')
966 &General
::readhasharray
("$confignet", \
%customnetwork);
967 foreach my $key (keys %customnetwork) {
968 if($fwhostsettings{'key'} eq $customnetwork{$key}[0]){
969 delete $customnetwork{$key};
970 &General
::writehasharray
("$confignet", \
%customnetwork);
977 if ($fwhostsettings{'ACTION'} eq 'delhost')
979 &General
::readhasharray
("$confighost", \
%customhost);
980 foreach my $key (keys %customhost) {
981 if($fwhostsettings{'key'} eq $customhost{$key}[0]){
982 delete $customhost{$key};
983 &General
::writehasharray
("$confighost", \
%customhost);
990 if ($fwhostsettings{'ACTION'} eq 'deletegrphost')
994 &General
::readhasharray
("$configgrp", \
%customgrp);
995 foreach my $key (keys %customgrp){
996 if($customgrp{$key}[0].",".$customgrp{$key}[1].",".$customgrp{$key}[2].",".$customgrp{$key}[3] eq $fwhostsettings{'delhost'}){
997 $grpname=$customgrp{$key}[0];
998 $grpremark=$customgrp{$key}[1];
999 #check if we delete the last entry, then generate dummy
1000 if ($fwhostsettings{'last'} eq 'on'){
1001 $customgrp{$key}[1] = '';
1002 $customgrp{$key}[2] = 'none';
1003 $customgrp{$key}[3] = '';
1004 $fwhostsettings{'last'}='';
1007 delete $customgrp{$key};
1011 &General
::writehasharray
("$configgrp", \
%customgrp);
1012 &General
::firewall_config_changed
();
1013 if ($fwhostsettings{'update'} eq 'on'){
1014 $fwhostsettings{'remark'}= $grpremark;
1015 $fwhostsettings{'grp_name'}=$grpname;
1020 if ($fwhostsettings{'ACTION'} eq 'deletelocationgrpentry')
1024 &General
::readhasharray
("$configlocationgrp", \
%customlocationgrp);
1025 foreach my $key (keys %customlocationgrp){
1026 if($customlocationgrp{$key}[0].",".$customlocationgrp{$key}[1].",".$customlocationgrp{$key}[2].",".$customlocationgrp{$key}[3] eq $fwhostsettings{'delentry'}){
1027 $grpname=$customlocationgrp{$key}[0];
1028 $grpremark=$customlocationgrp{$key}[1];
1029 #check if we delete the last entry, then generate dummy
1030 if ($fwhostsettings{'last'} eq 'on'){
1031 $customlocationgrp{$key}[1] = '';
1032 $customlocationgrp{$key}[2] = 'none';
1033 $customlocationgrp{$key}[3] = '';
1034 $fwhostsettings{'last'}='';
1037 delete $customlocationgrp{$key};
1041 &General
::writehasharray
("$configlocationgrp", \
%customlocationgrp);
1042 &General
::firewall_config_changed
();
1043 if ($fwhostsettings{'update'} eq 'on'){
1044 $fwhostsettings{'remark'}= $grpremark;
1045 $fwhostsettings{'grp_name'}=$grpname;
1048 &viewtablelocationgrp
;
1051 if ($fwhostsettings{'ACTION'} eq 'delgrp')
1053 &General
::readhasharray
("$configgrp", \
%customgrp);
1054 &decrease
($fwhostsettings{'grp_name'});
1055 foreach my $key (sort keys %customgrp)
1057 if($customgrp{$key}[0] eq $fwhostsettings{'grp_name'})
1059 delete $customgrp{$key};
1062 &General
::writehasharray
("$configgrp", \
%customgrp);
1063 $fwhostsettings{'grp_name'}='';
1067 if ($fwhostsettings{'ACTION'} eq 'dellocationgrp')
1069 &General
::readhasharray
("$configlocationgrp", \
%customlocationgrp);
1070 &decrease
($fwhostsettings{'grp_name'});
1071 foreach my $key (sort keys %customlocationgrp)
1073 if($customlocationgrp{$key}[0] eq $fwhostsettings{'grp_name'})
1075 delete $customlocationgrp{$key};
1078 &General
::writehasharray
("$configlocationgrp", \
%customlocationgrp);
1079 $fwhostsettings{'grp_name'}='';
1081 &viewtablelocationgrp
;
1083 if ($fwhostsettings{'ACTION'} eq 'delservice')
1085 &General
::readhasharray
("$configsrv", \
%customservice);
1086 foreach my $key (keys %customservice) {
1087 if($customservice{$key}[0] eq $fwhostsettings{'SRV_NAME'}){
1088 delete $customservice{$key};
1089 &General
::writehasharray
("$configsrv", \
%customservice);
1093 $fwhostsettings{'SRV_NAME'}='';
1094 $fwhostsettings{'SRV_PORT'}='';
1095 $fwhostsettings{'PROT'}='';
1098 if ($fwhostsettings{'ACTION'} eq 'delservicegrp')
1100 &General
::readhasharray
("$configsrvgrp", \
%customservicegrp);
1101 &decreaseservice
($fwhostsettings{'SRVGRP_NAME'});
1102 foreach my $key (sort keys %customservicegrp)
1104 if($customservicegrp{$key}[0] eq $fwhostsettings{'SRVGRP_NAME'})
1106 delete $customservicegrp{$key};
1109 &General
::writehasharray
("$configsrvgrp", \
%customservicegrp);
1110 $fwhostsettings{'SRVGRP_NAME'}='';
1112 &viewtableservicegrp
;
1114 if ($fwhostsettings{'ACTION'} eq 'delgrpservice')
1118 &General
::readhasharray
("$configsrvgrp", \
%customservicegrp);
1119 foreach my $key (keys %customservicegrp){
1120 if($customservicegrp{$key}[0].",".$customservicegrp{$key}[1].",".$customservicegrp{$key}[2] eq $fwhostsettings{'delsrvfromgrp'})
1122 $grpname=$customservicegrp{$key}[0];
1123 $grpremark=$customservicegrp{$key}[1];
1124 if($fwhostsettings{'last'} eq 'on'){
1125 $customservicegrp{$key}[2] = 'none';
1126 $fwhostsettings{'last'} = '';
1129 delete $customservicegrp{$key};
1133 &General
::writehasharray
("$configsrvgrp", \
%customservicegrp);
1134 &General
::firewall_config_changed
();
1135 if ($fwhostsettings{'updatesrvgrp'} eq 'on'){
1136 $fwhostsettings{'SRVGRP_NAME'}=$grpname;
1137 $fwhostsettings{'SRVGRP_REMARK'}=$grpremark;
1140 &viewtableservicegrp
;
1142 if ($fwhostsettings{'ACTION'} eq $Lang::tr
{'fwhost newnet'})
1147 if ($fwhostsettings{'ACTION'} eq $Lang::tr
{'fwhost newhost'})
1152 if ($fwhostsettings{'ACTION'} eq $Lang::tr
{'fwhost newgrp'})
1157 if ($fwhostsettings{'ACTION'} eq $Lang::tr
{'fwhost newlocationgrp'})
1160 &viewtablelocationgrp
;
1162 if ($fwhostsettings{'ACTION'} eq $Lang::tr
{'fwhost newservice'})
1166 if ($fwhostsettings{'ACTION'} eq $Lang::tr
{'fwhost newservicegrp'})
1169 &viewtableservicegrp
;
1171 if ($fwhostsettings{'ACTION'} eq 'changegrpremark')
1173 &General
::readhasharray
("$configgrp", \
%customgrp);
1174 if ($fwhostsettings{'oldrem'} ne $fwhostsettings{'newrem'} && (&validremark
($fwhostsettings{'newrem'}) || $fwhostsettings{'newrem'} eq '')){
1175 foreach my $key (sort keys %customgrp)
1177 if($customgrp{$key}[0] eq $fwhostsettings{'grp'} && $customgrp{$key}[1] eq $fwhostsettings{'oldrem'})
1179 $customgrp{$key}[1]='';
1180 $customgrp{$key}[1]=$fwhostsettings{'newrem'};
1183 &General
::writehasharray
("$configgrp", \
%customgrp);
1184 $fwhostsettings{'update'}='on';
1185 $fwhostsettings{'remark'}=$fwhostsettings{'newrem'};
1187 $errormessage=$Lang::tr
{'fwhost err remark'};
1188 $fwhostsettings{'remark'}=$fwhostsettings{'oldrem'};
1189 $fwhostsettings{'grp_name'}=$fwhostsettings{'grp'};
1190 $fwhostsettings{'update'} = 'on';
1192 $fwhostsettings{'grp_name'}=$fwhostsettings{'grp'};
1196 if ($fwhostsettings{'ACTION'} eq 'changelocationgrpremark')
1198 &General
::readhasharray
("$configlocationgrp", \
%customlocationgrp);
1199 if ($fwhostsettings{'oldrem'} ne $fwhostsettings{'newrem'} && (&validremark
($fwhostsettings{'newrem'}) || $fwhostsettings{'newrem'} eq '')){
1200 foreach my $key (sort keys %customlocationgrp)
1202 if($customlocationgrp{$key}[0] eq $fwhostsettings{'grp'} && $customlocationgrp{$key}[1] eq $fwhostsettings{'oldrem'})
1204 $customlocationgrp{$key}[1]='';
1205 $customlocationgrp{$key}[1]=$fwhostsettings{'newrem'};
1208 &General
::writehasharray
("$configlocationgrp", \
%customlocationgrp);
1209 $fwhostsettings{'update'}='on';
1210 $fwhostsettings{'remark'}=$fwhostsettings{'newrem'};
1212 $errormessage=$Lang::tr
{'fwhost err remark'};
1213 $fwhostsettings{'remark'}=$fwhostsettings{'oldrem'};
1214 $fwhostsettings{'grp_name'}=$fwhostsettings{'grp'};
1215 $fwhostsettings{'update'} = 'on';
1217 $fwhostsettings{'grp_name'}=$fwhostsettings{'grp'};
1219 &viewtablelocationgrp
;
1221 if ($fwhostsettings{'ACTION'} eq 'changesrvgrpremark')
1223 &General
::readhasharray
("$configsrvgrp", \
%customservicegrp );
1224 if ($fwhostsettings{'oldsrvrem'} ne $fwhostsettings{'newsrvrem'} && (&validremark
($fwhostsettings{'newsrvrem'}) || $fwhostsettings{'newsrvrem'} eq '')){
1225 foreach my $key (sort keys %customservicegrp)
1227 if($customservicegrp{$key}[0] eq $fwhostsettings{'srvgrp'} && $customservicegrp{$key}[1] eq $fwhostsettings{'oldsrvrem'})
1229 $customservicegrp{$key}[1]='';
1230 $customservicegrp{$key}[1]=$fwhostsettings{'newsrvrem'};
1233 &General
::writehasharray
("$configsrvgrp", \
%customservicegrp);
1234 $fwhostsettings{'updatesrvgrp'}='on';
1235 $fwhostsettings{'SRVGRP_REMARK'}=$fwhostsettings{'newsrvrem'};
1236 }elsif($fwhostsettings{'oldsrvrem'} eq $fwhostsettings{'newsrvrem'}){
1238 &viewtableservicegrp
;
1240 $errormessage=$Lang::tr
{'fwhost err remark'};
1241 $fwhostsettings{'SRVGRP_REMARK'}=$fwhostsettings{'oldsrvrem'};
1242 $fwhostsettings{'SRVGRP_NAME'}=$fwhostsettings{'srvgrp'};
1243 $fwhostsettings{'updatesrvgrp'} = 'on';
1245 $fwhostsettings{'SRVGRP_NAME'}=$fwhostsettings{'srvgrp'};
1247 &viewtableservicegrp
;
1249 if ($fwhostsettings{'ACTION'} eq 'changesrvgrpname')
1251 &General
::readhasharray
("$configsrvgrp", \
%customservicegrp );
1252 if ($fwhostsettings{'oldsrvgrpname'} ne $fwhostsettings{'srvgrp'}){
1253 #Check new groupname
1254 if (!&validhostname
($fwhostsettings{'srvgrp'})){
1255 $errormessage.=$Lang::tr
{'fwhost err name'}."<br>";
1257 if (!$errormessage){
1258 #Rename group in customservicegroup
1259 foreach my $key (keys %customservicegrp) {
1260 if($customservicegrp{$key}[0] eq $fwhostsettings{'oldsrvgrpname'}){
1261 $customservicegrp{$key}[0]=$fwhostsettings{'srvgrp'};
1264 &General
::writehasharray
("$configsrvgrp", \
%customservicegrp );
1265 #change name in FW Rules
1266 &changenameinfw
($fwhostsettings{'oldsrvgrpname'},$fwhostsettings{'srvgrp'},15);
1270 &viewtableservicegrp
;
1272 if ($fwhostsettings{'ACTION'} eq 'changegrpname')
1274 &General
::readhasharray
("$configgrp", \
%customgrp );
1275 if ($fwhostsettings{'oldgrpname'} ne $fwhostsettings{'grp'}){
1276 #Check new groupname
1277 if (!&validhostname
($fwhostsettings{'grp'})){
1278 $errormessage.=$Lang::tr
{'fwhost err name'}."<br>";
1280 if (!$errormessage){
1281 #Rename group in customservicegroup
1282 foreach my $key (keys %customgrp) {
1283 if($customgrp{$key}[0] eq $fwhostsettings{'oldgrpname'}){
1284 $customgrp{$key}[0]=$fwhostsettings{'grp'};
1287 &General
::writehasharray
("$configgrp", \
%customgrp );
1288 #change name in FW Rules
1289 &changenameinfw
($fwhostsettings{'oldgrpname'},$fwhostsettings{'grp'},4);
1290 &changenameinfw
($fwhostsettings{'oldgrpname'},$fwhostsettings{'grp'},6);
1296 if ($fwhostsettings{'ACTION'} eq 'changelocationgrpname')
1298 &General
::readhasharray
("$configlocationgrp", \
%customlocationgrp );
1299 if ($fwhostsettings{'oldgrpname'} ne $fwhostsettings{'grp'}){
1300 #Check new groupname
1301 if (!&validhostname
($fwhostsettings{'grp'})){
1302 $errormessage.=$Lang::tr
{'fwhost err name'}."<br>";
1304 if (!$errormessage){
1306 foreach my $key (keys %customlocationgrp) {
1307 if($customlocationgrp{$key}[0] eq $fwhostsettings{'oldgrpname'}){
1308 $customlocationgrp{$key}[0]=$fwhostsettings{'grp'};
1311 &General
::writehasharray
("$configlocationgrp", \
%customlocationgrp );
1312 #change name in FW Rules
1313 &changenameinfw
($fwhostsettings{'oldgrpname'},$fwhostsettings{'grp'},4,"location");
1314 &changenameinfw
($fwhostsettings{'oldgrpname'},$fwhostsettings{'grp'},6,"location");
1318 &viewtablelocationgrp
;
1321 if($fwhostsettings{'ACTION'} eq '')
1327 &Header
::openbox
('100%', 'left',);
1328 print "$Lang::tr{'fwhost welcome'}";
1331 <table border='0' width='100%'>
1334 <form method='post'>
1335 <input type='submit' name='ACTION' value='$Lang::tr{'fwhost newnet'}'>
1336 <input type='submit' name='ACTION' value='$Lang::tr{'fwhost newhost'}'>
1337 <input type='submit' name='ACTION' value='$Lang::tr{'fwhost newgrp'}'>
1338 <input type='submit' name='ACTION' value='$Lang::tr{'fwhost newlocationgrp'}'>
1342 <form method='post'>
1343 <input type='submit' name='ACTION' value='$Lang::tr{'fwhost newservice'}'>
1344 <input type='submit' name='ACTION' value='$Lang::tr{'fwhost newservicegrp'}'>
1354 &Header
::closebox
();
1362 &Header
::openbox
('100%', 'left', $Lang::tr
{'fwhost addnet'});
1363 $fwhostsettings{'orgname'}=$fwhostsettings{'HOSTNAME'};
1364 $fwhostsettings{'orgnetremark'}=$fwhostsettings{'NETREMARK'};
1366 <table border='0' width='100%' >
1367 <tr><td width='15%'>$Lang::tr{'name'}:</td><td><form method='post'><input type='TEXT' name='HOSTNAME' id='textbox1' value='$fwhostsettings{'HOSTNAME'}' $fwhostsettings{'BLK_HOST'} size='20'><script>document.getElementById('textbox1').focus()</script></td></tr>
1368 <tr><td>$Lang::tr{'fwhost netaddress'}:</td><td><input type='TEXT' name='IP' value='$fwhostsettings{'IP'}' $fwhostsettings{'BLK_IP'} size='20' maxlength='15'></td></tr>
1369 <tr><td>$Lang::tr{'netmask'}:</td><td><input type='TEXT' name='SUBNET' value='$fwhostsettings{'SUBNET'}' $fwhostsettings{'BLK_IP'} size='20' maxlength='15'></td></tr>
1370 <tr><td>$Lang::tr{'remark'}:</td><td><input type='TEXT' name='NETREMARK' value='$fwhostsettings{'NETREMARK'}' style='width: 98.5%;'></td></tr>
1371 <tr><td colspan='6'><br></td></tr><tr>
1373 if ($fwhostsettings{'ACTION'} eq 'editnet' || $fwhostsettings{'error'} eq 'on')
1375 print "<td colspan='6' align='right'><input type='submit' value='$Lang::tr{'update'}' style='min-width:100px;'><input type='hidden' name='ACTION' value='updatenet'><input type='hidden' name='orgnetremark' value='$fwhostsettings{'orgnetremark'}' ><input type='hidden' name='orgname' value='$fwhostsettings{'orgname'}' ><input type='hidden' name='update' value='on'><input type='hidden' name='newnet' value='$fwhostsettings{'newnet'}'>";
1377 print "<td colspan='6' align='right'><input type='submit' value='$Lang::tr{'save'}' style='min-width:100px;'><input type='hidden' name='ACTION' value='savenet'><input type='hidden' name='newnet' value='on'>";
1379 print "</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='resetnet'></form></td></tr></table>";
1380 &Header
::closebox
();
1386 &Header
::openbox
('100%', 'left', $Lang::tr
{'fwhost addhost'});
1387 $fwhostsettings{'orgname'}=$fwhostsettings{'HOSTNAME'};
1388 $fwhostsettings{'orgremark'}=$fwhostsettings{'HOSTREMARK'};
1390 <table width='100%'>
1391 <tr><td>$Lang::tr{'name'}:</td><td><form method='post' style='display:inline;'><input type='TEXT' name='HOSTNAME' id='textbox1' value='$fwhostsettings{'HOSTNAME'}' $fwhostsettings{'BLK_HOST'} size='20'><script>document.getElementById('textbox1').focus()</script></td></tr>
1392 <tr><td>IP/MAC:</td><td><input type='TEXT' name='IP' value='$fwhostsettings{'IP'}' $fwhostsettings{'BLK_IP'} size='20' maxlength='17'></td></tr>
1393 <tr><td width='10%'>$Lang::tr{'remark'}:</td><td><input type='TEXT' name='HOSTREMARK' value='$fwhostsettings{'HOSTREMARK'}' style='width:98%;'></td></tr>
1394 <tr><td colspan='5'><br></td></tr><tr>
1397 if ($fwhostsettings{'ACTION'} eq 'edithost' || $fwhostsettings{'error'} eq 'on')
1400 print " <td colspan='4' align='right'><input type='submit' value='$Lang::tr{'update'}' style='min-width:100px;'/><input type='hidden' name='ACTION' value='updatehost'><input type='hidden' name='orgremark' value='$fwhostsettings{'orgremark'}' ><input type='hidden' name='orgname' value='$fwhostsettings{'orgname'}' ><input type='hidden' name='update' value='on'><input type='hidden' name='newhost' value='$fwhostsettings{'newhost'}'></form>";
1402 print " <td colspan='4' align='right'><input type='submit' name='savehost' value='$Lang::tr{'save'}' style='min-width:100px;' /><input type='hidden' name='ACTION' value='savehost' /><input type='hidden' name='newhost' value='on'>";
1404 print " </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='resethost'></form></td></tr></table>";
1405 &Header
::closebox
();
1412 &Header
::openbox
('100%', 'left', $Lang::tr
{'fwhost addgrp'});
1413 &General
::setup_default_networks
(\
%defaultNetworks);
1414 &General
::readhasharray
("$configccdnet", \
%ccdnet);
1415 &General
::readhasharray
("$confignet", \
%customnetwork);
1416 &General
::readhasharray
("$configccdhost", \
%ccdhost);
1417 &General
::readhasharray
("$confighost", \
%customhost);
1418 &General
::readhasharray
("$configipsec", \
%ipsecconf);
1422 $checked{'check1'}{'off'} = '';
1423 $checked{'check1'}{'on'} = '';
1424 $checked{'grp2'}{$fwhostsettings{'grp2'}} = 'CHECKED';
1425 $fwhostsettings{'oldremark'}=$fwhostsettings{'remark'};
1426 $fwhostsettings{'oldgrpname'}=$fwhostsettings{'grp_name'};
1427 my $grp=$fwhostsettings{'grp_name'};
1428 my $rem=$fwhostsettings{'remark'};
1429 if ($fwhostsettings{'update'} eq ''){
1431 <table width='100%' border='0'>
1433 <td style='width:15%;'>$Lang::tr{'fwhost addgrpname'}</td>
1434 <td><form method='post'><input type='TEXT' name='grp_name' value='$fwhostsettings{'grp_name'}' size='30'></td>
1437 <td>$Lang::tr{'remark'}:</td>
1438 <td ><input type='TEXT' name='remark' value='$fwhostsettings{'remark'}' style='width: 99%;'></td>
1441 <td colspan='2'><br></td>
1447 <table width='100%' border='0'><form method='post'>
1449 <td style='width:15%;'>$Lang::tr{'fwhost addgrpname'}</td>
1450 <td style='width:30%;'><input type='TEXT' name='grp' value='$fwhostsettings{'grp_name'}' size='30'></td>
1451 <td><input type='submit' value='$Lang::tr{'fwhost change'}'><input type='hidden' name='oldgrpname' value='$fwhostsettings{'oldgrpname'}'><input type='hidden' name='ACTION' value='changegrpname'></td>
1454 <tr><form method='post' style='display:inline'>
1455 <td>$Lang::tr{'remark'}:</td>
1456 <td colspan='2' style='width:98%;'><input type='TEXT' name='newrem' value='$fwhostsettings{'remark'}' style='width:98%;'></td>
1457 <td align='right'><input type='submit' value='$Lang::tr{'fwhost change'}'><input type='hidden' name='grp' value='$fwhostsettings{'grp_name'}'><input type='hidden' name='oldrem' value='$fwhostsettings{'oldremark'}'><input type='hidden' name='ACTION' value='changegrpremark' ></td>
1463 if ($fwhostsettings{'update'} eq 'on'){
1465 <form method='post'><input type='hidden' name='remark' value='$rem'><input type='hidden' name='grp_name' value='$grp'>
1466 <table width='100%' border='0'>
1467 <tr><td width=50% valign='top'>
1468 <table width='90%' border='0'>
1470 <td style='width:15em;'>
1472 <input type='radio' name='grp2' value='std_net' id='DEFAULT_SRC_ADR' checked>
1473 $Lang::tr{'fwhost stdnet'}
1476 <td style='text-align:right;'>
1477 <select name='DEFAULT_SRC_ADR' style='width:16em;'>
1479 foreach my $network (sort keys %defaultNetworks)
1481 next if($defaultNetworks{$network}{'LOCATION'} eq "IPCOP");
1482 next if($defaultNetworks{$network}{'NAME'} eq "IPFire");
1483 print "<option value='$defaultNetworks{$network}{'NAME'}'";
1484 print " selected='selected'" if ($fwhostsettings{'DEFAULT_SRC_ADR'} eq $defaultNetworks{$network}{'NAME'});
1485 my $defnet="$defaultNetworks{$network}{'NAME'}_NETADDRESS";
1486 my $defsub="$defaultNetworks{$network}{'NAME'}_NETMASK";
1487 my $defsub1=&General
::subtocidr
($ownnet{$defsub});
1488 $ownnet{$defnet}='' if ($defaultNetworks{$network}{'NAME'} eq 'RED');
1489 if ($ownnet{$defnet}){
1490 print ">$network ($ownnet{$defnet}/$defsub1)</option>";
1492 print ">$network</option>";
1495 print"</select></td></tr>";
1496 if (! -z
$confignet){
1501 <input type='radio' name='grp2' id='CUST_SRC_NET' value='cust_net' $checked{'grp2'}{'cust_net'}>
1502 $Lang::tr{'fwhost cust net'}:
1505 <td style='text-align:right;'>
1506 <select name='CUST_SRC_NET' style='width:16em;'>";
1508 foreach my $key (sort { ncmp
($customnetwork{$a}[0],$customnetwork{$b}[0]) } keys %customnetwork) {
1509 print"<option>$customnetwork{$key}[0]</option>";
1511 print"</select></td></tr>";
1513 if (! -z
$confighost){
1518 <input type='radio' name='grp2' id='CUST_SRC_HOST' value='cust_host' $checked{'grp2'}{'cust_host'}>
1519 $Lang::tr{'fwhost cust addr'}:
1522 <td style='text-align:right;'>
1523 <select name='CUST_SRC_HOST' style='width:16em;'>";
1525 foreach my $key (sort { ncmp
($customhost{$a}[0],$customhost{$b}[0]) } keys %customhost) {
1526 print"<option>$customhost{$key}[0]</option>";
1528 print"</select></td></tr>";
1532 print"</td><td align='right' style='vertical-align:top;'><table width='90%' border='0'>";
1534 if (%Wireguard::peers
) {
1537 <td style='width:15em;'>
1539 <input type='radio' name='grp2' value='wg_peer' $checked{'grp2'}{'wg_peer'}>
1540 $Lang::tr{'fwhost wg peers'}
1543 <td style='text-align:right;'>
1544 <select name='WG_PEER' style='width:16em;'>"
1547 foreach my $key (sort { $Wireguard::peers
{$a}[2] cmp $Wireguard::peers
{$b}[2] } keys %Wireguard::peers
) {
1548 my $peer = &Wireguard
::load_peer
($key);
1551 <option value="$peer->{"NAME"}">$peer->{"NAME"}</option>
1562 if (! -z
$configccdnet){
1564 <td style='width:15em;'>
1566 <input type='radio' name='grp2' id='OVPN_CCD_NET' value='ovpn_net' $checked{'grp2'}{'ovpn_net'}>
1567 $Lang::tr{'fwhost ccdnet'}
1570 <td style='text-align:right;'>
1571 <select name='OVPN_CCD_NET' style='width:16em;'>";
1573 foreach my $key (sort { ncmp
($ccdnet{$a}[0],$ccdnet{$b}[0]) } keys %ccdnet)
1575 print"<option value='$ccdnet{$key}[0]'>$ccdnet{$key}[0]</option>";
1577 print"</select></td></tr>";
1580 my @ovpn_clients=();
1581 foreach my $key (sort { ncmp
($ccdhost{$a}[0],$ccdhost{$b}[0]) } keys %ccdhost)
1583 if ($ccdhost{$key}[33] ne ''){
1585 push (@ovpn_clients,$ccdhost{$key}[1]);
1591 <td style='width:15em;'>
1593 <input type='radio' name='grp2' value='ovpn_host' $checked{'grp2'}{'ovpn_host'}>
1594 $Lang::tr{'fwhost ccdhost'}
1597 <td style='text-align:right;'>
1598 <select name='OVPN_CCD_HOST' style='width:16em;'>" if ($show eq '');
1600 foreach(@ovpn_clients){
1601 print"<option value='$_'>$_</option>";
1603 print"</select></td></tr>";
1607 foreach my $key (sort { ncmp
($ccdhost{$a}[1],$ccdhost{$b}[1]) } keys %ccdhost) {
1608 if($ccdhost{$key}[3] eq 'net'){
1610 push (@OVPN_N2N,$ccdhost{$key}[1]);
1616 <td style='width:15em;'>
1618 <input type='radio' name='grp2' id='OVPN_N2N' value='ovpn_n2n' $checked{'grp2'}{'ovpn_n2n'}>
1619 $Lang::tr{'fwhost ovpn_n2n'}:
1622 <td style='text-align:right;'>
1623 <select name='OVPN_N2N' style='width:16em;'>"
1626 print"<option>$_</option>";
1628 print"</select></td></tr>";
1632 foreach my $key (sort { ncmp
($ipsecconf{$a}[0],$ipsecconf{$b}[0]) } keys %ipsecconf) {
1633 if ($ipsecconf{$key}[3] eq 'net' || ($optionsfw{'SHOWDROPDOWN'} eq 'on' && $ipsecconf{$key}[3] ne 'host')){
1634 print "<td style='width:15em;'><label><input type='radio' name='grp2' id='IPSEC_NET' value='ipsec_net' $checked{'grp2'}{'ipsec_net'}>$Lang::tr{'fwhost ipsec net'}</label></td><td style='text-align:right;'><select name='IPSEC_NET' style='width:16em;'>" if $show eq '';
1636 #Check if we have more than one REMOTE subnet in config
1637 my @arr1 = split /\|/, $ipsecconf{$key}[11];
1640 print"<option value=$ipsecconf{$key}[1]>";
1641 print"$ipsecconf{$key}[1]";
1642 print" ($Lang::tr{'fwdfw all subnets'})" if $cnt1 > 1; #If this Conenction has more than one subnet, print one option for all subnets
1646 foreach my $val (@arr1){
1647 #normalize subnet to cidr notation
1648 my ($val1,$val2) = split /\//, $val;
1649 my $val3 = &General
::iporsubtocidr
($val2);
1651 print "value='$ipsecconf{$key}[1]|$val1/$val3'";
1652 print ">$ipsecconf{$key}[1] ($val1/$val3)</option>";
1657 print"</select></td></tr>";
1659 print"</td></tr></table>";
1662 print"<table width='100%'>";
1663 print"<tr><td style='text-align:right;'><input type='submit' value='$Lang::tr{'add'}' style='min-width:100px;' /><input type='hidden' name='oldremark' value='$fwhostsettings{'oldremark'}'><input type='hidden' name='update' value=\"$fwhostsettings{'update'}\"><input type='hidden' name='ACTION' value='savegrp' ></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='resetgrp'></form></td></table>";
1664 &Header
::closebox
();
1671 &Header
::openbox
('100%', 'left', $Lang::tr
{'fwhost addlocationgrp'});
1675 $checked{'check1'}{'off'} = '';
1676 $checked{'check1'}{'on'} = '';
1677 $checked{'grp2'}{$fwhostsettings{'grp2'}} = 'CHECKED';
1678 $fwhostsettings{'oldremark'}=$fwhostsettings{'remark'};
1679 $fwhostsettings{'oldgrpname'}=$fwhostsettings{'grp_name'};
1680 my $grp=$fwhostsettings{'grp_name'};
1681 my $rem=$fwhostsettings{'remark'};
1682 if ($fwhostsettings{'update'} eq ''){
1684 <table width='100%' border='0'>
1686 <td style='width:15%;'>$Lang::tr{'fwhost addgrpname'}</td>
1687 <td><form method='post'><input type='TEXT' name='grp_name' value='$fwhostsettings{'grp_name'}' size='30'></td>
1690 <td>$Lang::tr{'remark'}:</td>
1691 <td ><input type='TEXT' name='remark' value='$fwhostsettings{'remark'}' style='width: 99%;'></td>
1694 <td colspan='2'><br></td>
1700 <table width='100%' border='0'>
1701 <form method='post'><tr>
1702 <td style='width:15%;'>$Lang::tr{'fwhost addgrpname'}</td>
1703 <td style='width:30%;'><input type='TEXT' name='grp' value='$fwhostsettings{'grp_name'}' size='30'></td>
1705 <input type='submit' value='$Lang::tr{'fwhost change'}'>
1706 <input type='hidden' name='oldgrpname' value='$fwhostsettings{'oldgrpname'}'>
1707 <input type='hidden' name='ACTION' value='changelocationgrpname'>
1711 <tr><form method='post' style='display:inline'>
1712 <td>$Lang::tr{'remark'}:</td>
1713 <td colspan='2' style='width:98%;'>
1714 <input type='TEXT' name='newrem' value='$fwhostsettings{'remark'}' style='width:98%;'>
1717 <input type='submit' value='$Lang::tr{'fwhost change'}'>
1718 <input type='hidden' name='grp' value='$fwhostsettings{'grp_name'}'>
1719 <input type='hidden' name='oldrem' value='$fwhostsettings{'oldremark'}'>
1720 <input type='hidden' name='ACTION' value='changelocationgrpremark'>
1727 if ($fwhostsettings{'update'} eq 'on') {
1728 my @location_locations = &fwlib
::get_locations
();
1731 <form method='post'>
1732 <input type='hidden' name='remark' value='$rem'>
1733 <input type='hidden' name='grp_name' value='$grp'>
1735 <table width='100%' border='0'>
1737 <td style='text-align:left;'>
1738 <select name='COUNTRY_CODE' style='width:16em;'>";
1740 foreach my $location (@location_locations) {
1741 # Get full country name.
1742 my $fullname = &Location
::Functions
::get_full_country_name
($location);
1744 print"<option value='$location'>$location - $fullname</option>\n";
1755 <table width='100%'>
1756 <tr><td style='text-align:right;'>
1757 <input type='submit' value='$Lang::tr{'add'}' style='min-width:100px;' />
1758 <input type='hidden' name='oldremark' value='$fwhostsettings{'oldremark'}'>
1759 <input type='hidden' name='update' value=\"$fwhostsettings{'update'}\">
1760 <input type='hidden' name='ACTION' value='savelocationgrp' >
1763 <form method='post' style='display:inline'>
1765 <input type='submit' value='$Lang::tr{'fwhost back'}' style='min-width:100px;'>
1766 <input type='hidden' name='ACTION' value='resetlocationgrp'>
1771 &Header
::closebox
();
1777 &Header
::openbox
('100%', 'left', $Lang::tr
{'fwhost addservice'});
1778 if ($fwhostsettings{'updatesrv'} eq 'on')
1780 $fwhostsettings{'oldsrvname'} = $fwhostsettings{'SRV_NAME'};
1781 $fwhostsettings{'oldsrvport'} = $fwhostsettings{'SRV_PORT'};
1782 $fwhostsettings{'oldsrvprot'} = $fwhostsettings{'PROT'};
1783 $fwhostsettings{'oldsrvicmp'} = $fwhostsettings{'ICMP'};
1786 <table width='100%' border='0'><form method='post'>
1787 <tr><td width='10%' nowrap='nowrap'>$Lang::tr{'fwhost srv_name'}:</td><td><input type='text' name='SRV_NAME' id='textbox1' value='$fwhostsettings{'SRV_NAME'}' size='24'><script>document.getElementById('textbox1').focus()</script></td></tr>
1788 <tr><td width='10%' nowrap='nowrap'>$Lang::tr{'fwhost prot'}:</td><td><select name='PROT' id='protocol' >
1790 foreach ("TCP","UDP","ICMP")
1792 if ($_ eq $fwhostsettings{'PROT'})
1794 print"<option selected>$_</option>";
1796 print"<option>$_</option>";
1800 </select></td></tr></table>
1801 <div id='PROTOKOLL' class='noscript'><table width=100%' border='0'><tr><td width='10%' nowrap='nowrap'>$Lang::tr{'fwhost icmptype'}</td><td><select name='ICMP_TYPES'>
1803 &General
::readhasharray
("${General::swroot}/fwhosts/icmp-types", \
%icmptypes);
1804 print"<option value='All ICMP-Types'>$Lang::tr{'fwdfw all icmp'}</option>";
1805 foreach my $key (sort { ncmp
($icmptypes{$a}[0],$icmptypes{$b}[0]) }keys %icmptypes){
1806 if ($icmptypes{$key}[0] eq $fwhostsettings{'oldsrvicmp'}){
1807 print"<option selected>$icmptypes{$key}[0] ($icmptypes{$key}[1])</option>";
1809 print"<option>$icmptypes{$key}[0] ($icmptypes{$key}[1])</option>";
1813 </select></td></tr></table></div>
1814 <div id='PORT' class='noscript'><table width='100%' border='0'><tr><td width='10%'>$Lang::tr{'fwhost port'}:</td><td><input type='text' name='SRV_PORT' value='$fwhostsettings{'SRV_PORT'}' maxlength='11' size='24'></td></tr></table></div>
1815 <table width='100%' border='0'><tr><td colspan='6'><br></td></tr>
1816 <tr><td colspan='6' align='right'>
1818 if ($fwhostsettings{'updatesrv'} eq 'on')
1821 <input type='submit' value='$Lang::tr{'update'}'style='min-width:100px;' >
1822 <input type='hidden' name='ACTION' value='updateservice'>
1823 <input type='hidden' name='oldsrvname' value='$fwhostsettings{'oldsrvname'}'>
1824 <input type='hidden' name='oldsrvport' value='$fwhostsettings{'oldsrvport'}'>
1825 <input type='hidden' name='oldsrvprot' value='$fwhostsettings{'oldsrvprot'}'>
1826 <input type='hidden' name='oldsrvicmp' value='$fwhostsettings{'oldsrvicmp'}'>
1830 print"<input type='submit' value='$Lang::tr{'save'}' style='min-width:100px;'><input type='hidden' name='ACTION' value='saveservice'></form>";
1833 <form style='display:inline;' method='post'><input type='submit' value='$Lang::tr{'fwhost back'}' style='min-width:100px;'></form></td></tr>
1836 &Header
::closebox
();
1844 &Header
::openbox
('100%', 'left', $Lang::tr
{'fwhost addservicegrp'});
1845 $fwhostsettings{'oldsrvgrpremark'}=$fwhostsettings{'SRVGRP_REMARK'};
1846 $fwhostsettings{'oldsrvgrpname'}=$fwhostsettings{'SRVGRP_NAME'};
1847 if ($fwhostsettings{'updatesrvgrp'} eq ''){
1849 <table width='100%' border='0'><form method='post'>
1850 <tr><td width='10%'>$Lang::tr{'fwhost addgrpname'}</td><td><input type='text' name='SRVGRP_NAME' value='$fwhostsettings{'SRVGRP_NAME'}' size='24'></td></tr>
1851 <tr><td width='10%'>$Lang::tr{'remark'}:</td><td><input type='text' name='SRVGRP_REMARK' value='$fwhostsettings{'SRVGRP_REMARK'}' style='width: 98%;'></td></tr>
1852 <tr><td colspan='2'><br></tr>
1857 <table width='100%'><form method='post' style='display:inline'>
1858 <tr><td width='10%'>$Lang::tr{'fwhost addgrpname'}</td><td width='20%'><input type='text' name='srvgrp' value='$fwhostsettings{'SRVGRP_NAME'}' size='14'></td><td align='left'><input type='submit' value='$Lang::tr{'fwhost change'}'><input type='hidden' name='oldsrvgrpname' value='$fwhostsettings{'oldsrvgrpname'}'><input type='hidden' name='ACTION' value='changesrvgrpname'></td><td width='3%'></td></form></tr>
1860 <form method='post'>
1862 $Lang::tr{'remark'}:
1865 <input type='text' name='newsrvrem' value='$fwhostsettings{'SRVGRP_REMARK'}' style='width:98%;'>
1868 <input type='submit' value='$Lang::tr{'fwhost change'}'>
1869 <input type='hidden' name='oldsrvrem' value='$fwhostsettings{'oldsrvgrpremark'}'>
1870 <input type='hidden' name='srvgrp' value='$fwhostsettings{'SRVGRP_NAME'}'>
1871 <input type='hidden' name='ACTION' value='changesrvgrpremark' >
1883 if($fwhostsettings{'updatesrvgrp'} eq 'on'){
1885 <form method='post'><input type='hidden' name='SRVGRP_REMARK' value='$fwhostsettings{'SRVGRP_REMARK'}'><input type='hidden' name='SRVGRP_NAME' value='$fwhostsettings{'SRVGRP_NAME'}'><table border='0' width='100%'>
1886 <tr><td width='10%' nowrap='nowrap'>$Lang::tr{'add'}: </td><td><select name='CUST_SRV' style='min-width:185px;'>
1888 &General
::readhasharray
("$configsrv", \
%customservice);
1889 #Protocols for use in servicegroups
1890 print "<optgroup label='$Lang::tr{'fwhost cust service'}'>";
1891 foreach my $key (sort { ncmp
($customservice{$a}[0],$customservice{$b}[0]) } keys %customservice)
1893 print "<option>$customservice{$key}[0]</option>";
1895 print "</optgroup>";
1896 print "<optgroup label='$Lang::tr{'protocol'}'>";
1897 print "<option>GRE</option>";
1898 print "<option>AH</option>";
1899 print "<option>ESP</option>";
1900 print "<option>IGMP</option>";
1901 print "<option>IPIP</option>";
1902 print "<option value='IPV6'>IPv6 encap</option>";
1903 print "</optgroup>";
1906 <tr><td colspan='4'><br><br></td></tr>
1907 <tr><td colspan='4'></td></tr>
1912 <table width='100%'>
1913 <tr><td align='right'><input type='submit' value='$Lang::tr{'add'}' style='min-width:100px;' /><input type='hidden' name='updatesrvgrp' value='$fwhostsettings{'updatesrvgrp'}'><input type='hidden' name='oldsrvgrpremark' value='$fwhostsettings{'oldsrvgrpremark'}'><input type='hidden' name='ACTION' value='saveservicegrp' ></form><form style='display:inline;' method='post'><input type='submit' value='$Lang::tr{'fwhost back'}' style='min-width:100px;'></td></tr>
1916 &Header
::closebox
();
1921 if(! -z
$confignet){
1922 &Header
::openbox
('100%', 'left', $Lang::tr
{'fwhost cust net'});
1923 &General
::readhasharray
("$confignet", \
%customnetwork);
1924 &General
::readhasharray
("$configgrp", \
%customgrp);
1925 &General
::readhasharray
("$fwconfigfwd", \
%fwfwd);
1926 &General
::readhasharray
("$fwconfiginp", \
%fwinp);
1927 &General
::readhasharray
("$fwconfigout", \
%fwout);
1929 if (!keys %customnetwork)
1931 print "<center><b>$Lang::tr{'fwhost empty'}</b>";
1934 <table width='100%' cellspacing='0' class='tbl'>
1935 <tr><th align='center'><b>$Lang::tr{'name'}</b></th><th align='center'><b>$Lang::tr{'fwhost netaddress'}</b></th><th align='center'><b>$Lang::tr{'remark'}</b></th><th align='center'><b>$Lang::tr{'used'}</b></th><th></th><th width='3%'></th></tr>
1940 foreach my $key (sort {ncmp
($a,$b)} keys %customnetwork) {
1941 if ($fwhostsettings{'ACTION'} eq 'editnet' && $fwhostsettings{'HOSTNAME'} eq $customnetwork{$key}[0]) {
1943 $col="bgcolor='${Header::colouryellow}'";
1946 $col="bgcolor='$color{'color20'}'";
1950 $col="bgcolor='$color{'color22'}'";
1953 my $colnet="$customnetwork{$key}[1]/".&General
::subtocidr
($customnetwork{$key}[2]);
1954 my $netcount=&getnetcount
($customnetwork{$key}[0]);
1955 my $netusedin=&getusedin
($customnetwork{$key}[0]);
1956 print"<td width='20%' $col><form method='post'>$customnetwork{$key}[0]</td><td width='15%' align='center' $col>".&getcolor
($colnet)."</td><td width='40%' $col>$customnetwork{$key}[3]</td><td align='center' $col><span title='$netusedin'>$netcount x</span></td>";
1958 <td width='1%' $col><input type='image' src='/images/edit.gif' align='middle' alt='$Lang::tr{'edit'}' title='$Lang::tr{'edit'}' />
1959 <input type='hidden' name='ACTION' value='editnet'>
1960 <input type='hidden' name='HOSTNAME' value='$customnetwork{$key}[0]' />
1961 <input type='hidden' name='IP' value='$customnetwork{$key}[1]' />
1962 <input type='hidden' name='SUBNET' value='$customnetwork{$key}[2]' />
1963 <input type='hidden' name='NETREMARK' value='$customnetwork{$key}[3]' />
1966 if($netcount == '0')
1968 print"<td width='1%' $col><form method='post'><input type='image' src='/images/delete.gif' align='middle' alt='$Lang::tr{'delete'}' title='$Lang::tr{'delete'}' /><input type='hidden' name='ACTION' value='delnet' /><input type='hidden' name='key' value='$customnetwork{$key}[0]' /></td></form></tr>";
1970 print"<td $col></td></tr>";
1975 &Header
::closebox
();
1986 if (&General
::validmac
($c)){ return $c;}
1988 #Check if we got a full IP with subnet then split it
1989 if($c =~ /^(.*?)\/(.*?
)$/){
1990 ($sip,$scidr) = split ("/",$c);
1995 #Now check if IP is part of ORANGE,BLUE or GREEN
1996 if ( &Header
::orange_used
() && &General
::IpInSubnet
($sip,$netsettings{'ORANGE_ADDRESS'},$netsettings{'ORANGE_NETMASK'})){
1997 $tdcolor="<font style='color: $Header::colourorange;'>$c</font>";
2000 if ( &General
::IpInSubnet
($sip,$netsettings{'GREEN_ADDRESS'},$netsettings{'GREEN_NETMASK'})){
2001 $tdcolor="<font style='color: $Header::colourgreen;'>$c</font>";
2004 if ( &Header
::blue_used
() && &General
::IpInSubnet
($sip,$netsettings{'BLUE_ADDRESS'},$netsettings{'BLUE_NETMASK'})){
2005 $tdcolor="<font style='color: $Header::colourblue;'>$c</font>";
2008 if ("$sip/$scidr" eq "0.0.0.0/0"){
2009 $tdcolor="<font style='color: $Header::colourred;'>$c</font>";
2013 # WireGuard Roadwarrior
2014 if ($Wireguard::settings
{'CLIENT_POOL'}) {
2015 if (&Network
::ip_address_in_network
($sip, $Wireguard::settings
{'CLIENT_POOL'})) {
2016 return "<font style='color: $Header::colourwg;'>$c</font>"
2020 #Check if IP is part of OpenVPN N2N subnet
2021 foreach my $key (sort keys %ccdhost){
2022 if ($ccdhost{$key}[3] eq 'net'){
2023 my ($a,$b) = split("/",$ccdhost{$key}[11]);
2024 if (&General
::IpInSubnet
($sip,$a,$b)){
2025 $tdcolor="<font style='color:$Header::colourovpn ;'>$c</font>";
2031 #Check if IP is part of OpenVPN dynamic subnet
2032 my ($a,$b) = split("/",$ovpnsettings{'DOVPN_SUBNET'});
2033 if (&General
::IpInSubnet
($sip,$a,$b)){
2034 $tdcolor="<font style='color: $Header::colourovpn;'>$c</font>";
2038 #Check if IP is part of OpenVPN static subnet
2039 foreach my $key (sort keys %ccdnet){
2040 my ($a,$b) = split("/",$ccdnet{$key}[1]);
2041 $b =&General
::iporsubtodec
($b);
2042 if (&General
::IpInSubnet
($sip,$a,$b)){
2043 $tdcolor="<font style='color: $Header::colourovpn;'>$c</font>";
2048 #Check if IP is part of IPsec RW network
2049 if ($ipsecsettings{'RW_NET'} ne ''){
2050 my ($a,$b) = split("/",$ipsecsettings{'RW_NET'});
2051 $b=&General
::iporsubtodec
($b);
2052 if (&General
::IpInSubnet
($sip,$a,$b)){
2053 $tdcolor="<font style='color: $Header::colourvpn;'>$c</font>";
2058 #Check if IP is part of a IPsec N2N network
2059 foreach my $key (sort keys %ipsecconf){
2060 if ($ipsecconf{$key}[11]){
2061 foreach my $ipsecsubitem (split(/\|/, $ipsecconf{$key}[11])) {
2062 my ($a,$b) = split("/",$ipsecsubitem);
2063 $b=&General
::iporsubtodec
($b);
2064 if (&General
::IpInSubnet
($sip,$a,$b)){
2065 $tdcolor="<font style='color: $Header::colourvpn;'>$c</font>";
2075 if (! -z
$confighost){
2076 &Header
::openbox
('100%', 'left', $Lang::tr
{'fwhost cust addr'});
2077 &General
::readhasharray
("$confighost", \
%customhost);
2078 &General
::readhasharray
("$configccdnet", \
%ccdnet);
2079 &General
::readhasharray
("$configccdhost", \
%ccdhost);
2080 &General
::readhasharray
("$fwconfigfwd", \
%fwfwd);
2081 &General
::readhasharray
("$fwconfiginp", \
%fwinp);
2082 &General
::readhasharray
("$fwconfigout", \
%fwout);
2083 &General
::readhasharray
("$configgrp", \
%customgrp);
2084 if (!keys %customhost)
2086 print "<center><b>$Lang::tr{'fwhost empty'}</b>";
2089 <table width='100%' cellspacing='0' class='tbl'>
2090 <tr><th align='center'><b>$Lang::tr{'name'}</b></th><th align='center'><b>$Lang::tr{'fwhost ip_mac'}</b></th><th align='center'><b>$Lang::tr{'remark'}</b></th><th align='center'><b>$Lang::tr{'used'}</b></th><th></th><th width='3%'></th></tr>
2095 foreach my $key (sort { ncmp
($customhost{$a}[0],$customhost{$b}[0])} keys %customhost) {
2096 if ( ($fwhostsettings{'ACTION'} eq 'edithost' || $fwhostsettings{'error'}) && $fwhostsettings{'HOSTNAME'} eq $customhost{$key}[0]) {
2098 $col="bgcolor='${Header::colouryellow}'";
2099 }elsif ($count % 2){
2101 $col="bgcolor='$color{'color20'}'";
2103 $col="bgcolor='$color{'color22'}'";
2106 my ($ip,$sub)=split(/\//,$customhost{$key}[2]);
2107 $customhost{$key}[4]=~s/\s+//g;
2109 $hostcount=&gethostcount
($customhost{$key}[0]);
2110 my $hostusedin=&getusedin
($customhost{$key}[0]);
2111 my $color = &getcolor
($ip);
2113 <td width='20%' $col>$customhost{$key}[0]</td><td width='20%' align='center' $col >$color</td><td width='50%' align='left' $col>$customhost{$key}[3]</td><td align='center' $col><span title="$hostusedin">$hostcount x</span></td>
2114 <td width='1%' $col><form method='post'><input type='image' src='/images/edit.gif' align='middle' alt='$Lang::tr{'edit'}' title='$Lang::tr{'edit'}' />
2115 <input type='hidden' name='ACTION' value='edithost' />
2116 <input type='hidden' name='HOSTNAME' value='$customhost{$key}[0]' />
2117 <input type='hidden' name='IP' value='$ip' />
2118 <input type='hidden' name='type' value='$customhost{$key}[1]' />
2119 <input type='hidden' name='HOSTREMARK' value='$customhost{$key}[3]' />
2122 if($hostcount == '0')
2124 print"<td width='1%' $col><form method='post'><input type='image' src='/images/delete.gif' align='middle' alt='$Lang::tr{'delete'}' title='$Lang::tr{'delete'}' /><input type='hidden' name='ACTION' value='delhost' /><input type='hidden' name='key' value='$customhost{$key}[0]' /></td></form></tr>";
2126 print"<td width='1%' $col></td></tr>";
2131 &Header
::closebox
();
2136 if(! -z
"$configgrp"){
2137 &Header
::openbox
('100%', 'left', $Lang::tr
{'fwhost cust grp'});
2138 &General
::readhasharray
("$configgrp", \
%customgrp);
2139 &General
::readhasharray
("$configipsec", \
%ipsecconf);
2140 &General
::readhasharray
("$configccdhost", \
%ccdhost);
2141 &General
::readhasharray
("$configccdnet", \
%ccdnet);
2142 &General
::readhasharray
("$confighost", \
%customhost);
2143 &General
::readhasharray
("$confignet", \
%customnetwork);
2144 &General
::readhasharray
("$fwconfigfwd", \
%fwfwd);
2145 &General
::readhasharray
("$fwconfiginp", \
%fwinp);
2146 &General
::readhasharray
("$fwconfigout", \
%fwout);
2156 if (!keys %customgrp)
2158 print "<center><b>$Lang::tr{'fwhost err emptytable'}</b>";
2160 #get all groups in a hash
2161 foreach my $key (sort { ncmp
($customgrp{$a}[0],$customgrp{$b}[0]) } sort { ncmp
($customgrp{$a}[2],$customgrp{$b}[2]) } keys %customgrp){
2162 push (@counter,$customgrp{$key}[0]);
2164 foreach my $key1 (@counter) {
2167 foreach my $key (sort { ncmp
($customgrp{$a}[0],$customgrp{$b}[0]) } sort { ncmp
($customgrp{$a}[2],$customgrp{$b}[2]) } keys %customgrp){
2169 if ($helper ne $customgrp{$key}[0]){
2171 foreach my $key1 (sort { ncmp
($customgrp{$a}[0],$customgrp{$b}[0]) } sort { ncmp
($customgrp{$a}[2],$customgrp{$b}[2]) } keys %customgrp){
2172 if ($customgrp{$key}[0] eq $customgrp{$key1}[0])
2181 if ($customgrp{$key}[2] eq "none"){$customgrp{$key}[2]=$Lang::tr
{'fwhost err emptytable'};}
2182 $grpname=$customgrp{$key}[0];
2183 $remark="$customgrp{$key}[1]";
2184 if($count gt 1){ print"</table>";$count=1;}
2185 print "<br><b><u>$grpname</u></b> ";
2186 print " <b>$Lang::tr{'remark'}:</b>  $remark   " if ($remark ne '');
2187 my $netgrpcount=&getnetcount
($grpname);
2188 my $groupusedin=&getusedin
($grpname);
2189 print "<b>$Lang::tr{'used'}:</b> <span title='$groupusedin'>$netgrpcount x</span>";
2190 if($netgrpcount == '0')
2192 print"<form method='post' style='display:inline'><input type='image' src='/images/delete.gif' alt='$Lang::tr{'delete'}' title='$Lang::tr{'delete'}' align='right' /><input type='hidden' name='grp_name' value='$grpname' ><input type='hidden' name='ACTION' value='delgrp'></form>";
2194 print"<form method='post' style='display:inline'><input type='image' src='/images/edit.gif' alt='$Lang::tr{'edit'}' title='$Lang::tr{'edit'}' align='right' /><input type='hidden' name='grp_name' value='$grpname' ><input type='hidden' name='remark' value='$remark' ><input type='hidden' name='ACTION' value='editgrp'></form>";
2195 print"<table width='100%' cellspacing='0' class='tbl'><tr><th align='center'><b>$Lang::tr{'name'}</b></th><th align='center'><b>$Lang::tr{'fwhost ip_mac'}</b></th><th align='center' width='25%'><b>$Lang::tr{'fwhost type'}</th><th></th></tr>";
2198 if ( ($fwhostsettings{'ACTION'} eq 'editgrp' || $fwhostsettings{'update'} ne '') && $fwhostsettings{'grp_name'} eq $customgrp{$key}[0]) {
2200 $col="bgcolor='${Header::colouryellow}'";
2201 }elsif ($count %2 == 0){
2203 $col="bgcolor='$color{'color20'}'";
2206 $col="bgcolor='$color{'color22'}'";
2208 my $ip=&getipforgroup
($customgrp{$key}[2],$customgrp{$key}[3]);
2211 $col="bgcolor='${Header::colouryellow}'";
2213 print "<td width='39%' align='left' $col>";
2214 if($customgrp{$key}[3] eq 'Standard Network'){
2215 print &get_name
($customgrp{$key}[2])."</td>";
2216 }elsif($customgrp{$key}[3] eq "IpSec Network" && $customgrp{$key}[2] =~ /\|/){
2217 my ($a,$b) = split /\|/, $customgrp{$key}[2];
2220 print "$customgrp{$key}[2]</td>";
2222 if ($ip eq '' && $customgrp{$key}[2] ne $Lang::tr
{'fwhost err emptytable'}){
2223 print "<td align='center' $col>$Lang::tr{'fwhost deleted'}</td><td align='center' $col>$Lang::tr{'fwhost '.$customgrp{$key}[3]}</td><td width='1%' $col><form method='post'>";
2225 print"<td align='center' $col>".&getcolor
($ip)."</td><td align='center' $col>$Lang::tr{'fwhost '.$customgrp{$key}[3]}</td><td width='1%' $col><form method='post'>";
2227 if ($delflag > 0 && $ip ne ''){
2228 print"<input type='image' src='/images/delete.gif' align='middle' alt='$Lang::tr{'delete'}' title='$Lang::tr{'delete'}' />";
2229 #check if this group has only one entry
2230 foreach my $key2 (keys %hash) {
2231 if ($hash{$key2}<2 && $key2 eq $customgrp{$key}[0]){
2232 print "<input type='hidden' name='last' value='on'>" ;
2236 print"<input type='hidden' name='ACTION' value='deletegrphost'><input type='hidden' name='update' value='$fwhostsettings{'update'}'><input type='hidden' name='delhost' value='$grpname,$remark,$customgrp{$key}[2],$customgrp{$key}[3]'></form></td></tr>";
2237 $helper=$customgrp{$key}[0];
2242 &Header
::closebox
();
2246 sub viewtablelocationgrp
2248 # If our filesize is "zero" there is nothing to read-in.
2249 if (-z
"$configlocationgrp") {
2253 &Header
::openbox
('100%', 'left', $Lang::tr
{'fwhost cust locationgrp'});
2254 &General
::readhasharray
("$configlocationgrp", \
%customlocationgrp);
2255 &General
::readhasharray
("$fwconfigfwd", \
%fwfwd);
2256 &General
::readhasharray
("$fwconfiginp", \
%fwinp);
2257 &General
::readhasharray
("$fwconfigout", \
%fwout);
2269 # If there are no groups we are finished here.
2270 if (!keys %customlocationgrp) {
2271 print "<center><b>$Lang::tr{'fwhost err emptytable'}</b>";
2275 # Put all groups in a hash.
2276 foreach my $key (sort { ncmp
($customlocationgrp{$a}[0],$customlocationgrp{$b}[0]) }
2277 sort { ncmp
($customlocationgrp{$a}[2],$customlocationgrp{$b}[2]) } keys %customlocationgrp) {
2278 push (@counter,$customlocationgrp{$key}[0]);
2281 # Increase current used key.
2282 foreach my $key1 (@counter) {
2287 foreach my $key (sort { ncmp
($customlocationgrp{$a}[0],$customlocationgrp{$b}[0]) }
2288 sort { ncmp
($customlocationgrp{$a}[2],$customlocationgrp{$b}[2]) } keys %customlocationgrp) {
2290 if ($helper ne $customlocationgrp{$key}[0]) {
2293 foreach my $key1 (sort { ncmp
($customlocationgrp{$a}[0],$customlocationgrp{$b}[0]) }
2294 sort { ncmp
($customlocationgrp{$a}[2],$customlocationgrp{$b}[2]) } keys %customlocationgrp) {
2296 if ($customlocationgrp{$key}[0] eq $customlocationgrp{$key1}[0])
2308 $grpname=$customlocationgrp{$key}[0];
2311 $remark="$customlocationgrp{$key}[1]";
2314 $country_code="$customlocationgrp{$key}[2]";
2321 # Display groups header.
2322 print "<br><b><u>$grpname</u></b> \n";
2323 print "<b>$Lang::tr{'remark'}:</b>  $remark  \n" if ($remark ne '');
2326 my $locationgrpcount=&getlocationcount
($grpname);
2327 my $locationusedin=&getlocusedin
($grpname);
2328 print "<b>$Lang::tr{'used'}:</b> <span title='$locationusedin'>$locationgrpcount x</span>";
2329 # Only display delete icon, if the group is not used by a firewall rule.
2330 if($locationgrpcount == '0') {
2331 print"<form method='post' style='display:inline'>\n";
2332 print"<input type='image' src='/images/delete.gif' alt='$Lang::tr{'delete'}' title='$Lang::tr{'delete'}' align='right' />\n";
2333 print"<input type='hidden' name='grp_name' value='$grpname' >\n";
2334 print"<input type='hidden' name='ACTION' value='dellocationgrp'>\n";
2338 # Icon for group editing.
2340 <form method='post' style='display:inline'>
2341 <input type='image' src='/images/edit.gif' alt='$Lang::tr{'edit'}' title='$Lang::tr{'edit'}' align='right'/>
2342 <input type='hidden' name='grp_name' value='$grpname' >
2343 <input type='hidden' name='remark' value='$remark' >
2344 <input type='hidden' name='ACTION' value='editlocationgrp'>
2347 <table width='100%' cellspacing='0' class='tbl'>
2349 # Display headlines if the group contains any entries.
2350 if ($country_code ne "none") {
2353 <td width='10%' align='center'>
2354 <b>$Lang::tr{'flag'}</b>
2357 <td width='10%'align='center'>
2358 <b>$Lang::tr{'countrycode'}</b>
2361 <td width='70%'align='left'>
2362 <b>$Lang::tr{'country'}</b>
2365 <td width='10%' align='right'></td>
2371 # Check if our group contains any entries.
2372 if ($country_code eq "none") {
2373 print "<tr><td>$Lang::tr{'fwhost err emptytable'}</td></tr>\n";
2375 # Check if we are currently editing a group and assign column backgound colors.
2377 if ( ($fwhostsettings{'ACTION'} eq 'editlocationgrp' || $fwhostsettings{'update'} ne '')
2378 && $fwhostsettings{'grp_name'} eq $customlocationgrp{$key}[0]) {
2379 $col="bgcolor='${Header::colouryellow}'";
2380 } elsif ($count %2 == 0){
2381 $col="bgcolor='$color{'color20'}'";
2383 $col="bgcolor='$color{'color22'}'";
2387 my $icon = &Location
::Functions
::get_flag_icon
($customlocationgrp{$key}[2]);
2389 # Print column with flag icon.
2392 $col_content = "<img src='$icon' alt='$customlocationgrp{$key}[2]' title='$customlocationgrp{$key}[2]'>";
2394 $col_content = "<b>N/A</b>";
2397 print "<td align='center' $col>$col_content</td>\n";
2399 # Print column with country code.
2400 print "<td align='center' $col>$customlocationgrp{$key}[2]</td>\n";
2402 # Print column with full country name.
2403 my $country_name = &Location
::Functions
::get_full_country_name
($customlocationgrp{$key}[2]);
2404 print "<td align='left' $col>$country_name</td>\n";
2406 # Generate from for removing entries from a group.
2407 print "<td align='right' width='1%' $col><form method='post'>\n";
2410 print"<input type='image' src='/images/delete.gif' align='middle' alt='$Lang::tr{'delete'}' title='$Lang::tr{'delete'}'/>\n";
2412 # Check if this group only has a single entry.
2413 foreach my $key2 (keys %hash) {
2414 if ($hash{$key2}<2 && $key2 eq $customlocationgrp{$key}[0]){
2415 print "<input type='hidden' name='last' value='on'>" ;
2420 print "<input type='hidden' name='ACTION' value='deletelocationgrpentry'>\n";
2421 print "<input type='hidden' name='update' value='$fwhostsettings{'update'}'>\n";
2422 print "<input type='hidden' name='delentry' value='$grpname,$remark,$customlocationgrp{$key}[2],$customlocationgrp{$key}[3]'>\n";
2428 $helper=$customlocationgrp{$key}[0];
2433 &Header
::closebox
();
2435 sub viewtableservice
2439 if(! -z
"$configsrv")
2441 &Header
::openbox
('100%', 'left', $Lang::tr
{'fwhost services'});
2442 &General
::readhasharray
("$configsrv", \
%customservice);
2443 &General
::readhasharray
("$configsrvgrp", \
%customservicegrp);
2444 &General
::readhasharray
("$fwconfigfwd", \
%fwfwd);
2445 &General
::readhasharray
("$fwconfiginp", \
%fwinp);
2446 &General
::readhasharray
("$fwconfigout", \
%fwout);
2448 <table width='100%' cellspacing='0' class='tbl'>
2449 <tr><th align='center'><b>$Lang::tr{'fwhost srv_name'}</b></th><th align='center'><b>$Lang::tr{'fwhost prot'}</b></th><th align='center'><b>$Lang::tr{'fwhost port'}</b></th><th align='center'><b>ICMP</b></th><th align='center'><b>$Lang::tr{'fwhost used'}</b></th><th></th><th width='3%'></th></tr>
2452 foreach my $key (sort { ncmp
($customservice{$a}[0],$customservice{$b}[0])} keys %customservice)
2455 if ( ($fwhostsettings{'updatesrv'} eq 'on' || $fwhostsettings{'error'}) && $fwhostsettings{'SRV_NAME'} eq $customservice{$key}[0]) {
2457 $col="bgcolor='${Header::colouryellow}'";
2458 }elsif ($count % 2){
2460 $col="bgcolor='$color{'color22'}'";
2463 $col="bgcolor='$color{'color20'}'";
2466 <td $col>$customservice{$key}[0]</td><td align='center' $col>$customservice{$key}[2]</td><td align='center' $col>$customservice{$key}[1]</td><td align='center' $col>
2469 $srvcount=&getsrvcount
($customservice{$key}[0]);
2470 my $serviceusedin=&getsrvusedin
($customservice{$key}[0]);
2471 if($customservice{$key}[3] eq 'All ICMP-Types'){print $Lang::tr
{'fwdfw all icmp'};}
2472 elsif($customservice{$key}[3] ne 'BLANK'){print $customservice{$key}[3];}
2474 </td><td align='center' $col><span title='$serviceusedin'>$srvcount x</span></td>
2475 <td width='1%' $col><form method='post'><input type='image' src='/images/edit.gif' align='middle' alt='$Lang::tr{'edit'}' title='$Lang::tr{'edit'}' /><input type='hidden' name='ACTION' value='editservice' />
2476 <input type='hidden' name='SRV_NAME' value='$customservice{$key}[0]' />
2477 <input type='hidden' name='SRV_PORT' value='$customservice{$key}[1]' />
2478 <input type='hidden' name='PROT' value='$customservice{$key}[2]' />
2479 <input type='hidden' name='ICMP' value='$customservice{$key}[3]' /></form></td>
2481 if ($srvcount eq '0')
2483 print"<td width='1%' $col><form method='post'><input type='image' src='/images/delete.gif' align='middle' alt='$Lang::tr{'delete'}' title='$Lang::tr{'delete'}' /><input type='hidden' name='ACTION' value='delservice' /><input type='hidden' name='SRV_NAME' value='$customservice{$key}[0]'></td></tr></form>";
2485 print"<td $col></td></tr>";
2489 &Header
::closebox
();
2492 sub viewtableservicegrp
2507 if (! -z
$configsrvgrp){
2508 &Header
::openbox
('100%', 'left', $Lang::tr
{'fwhost cust srvgrp'});
2509 &General
::readhasharray
("$configsrvgrp", \
%customservicegrp);
2510 &General
::readhasharray
("$configsrv", \
%customservice);
2511 &General
::readhasharray
("$fwconfigfwd", \
%fwfwd);
2512 &General
::readhasharray
("$fwconfiginp", \
%fwinp);
2513 &General
::readhasharray
("$fwconfigout", \
%fwout);
2514 my $number= keys %customservicegrp;
2515 foreach my $key (sort { ncmp
($customservicegrp{$a}[0],$customservicegrp{$b}[0]) } sort { ncmp
($customservicegrp{$a}[2],$customservicegrp{$b}[2]) }keys %customservicegrp){
2516 push (@counter,$customservicegrp{$key}[0]);
2518 foreach my $key1 (@counter) {
2521 foreach my $key (sort { ncmp
($customservicegrp{$a}[0],$customservicegrp{$b}[0]) } sort { ncmp
($customservicegrp{$a}[2],$customservicegrp{$b}[2]) }keys %customservicegrp){
2523 if ($helper ne $customservicegrp{$key}[0]){
2524 #Get used groupcounter
2525 $grpcount=&getsrvcount
($customservicegrp{$key}[0]);
2527 foreach my $key1 (sort { ncmp
($customservicegrp{$a}[0],$customservicegrp{$b}[0]) } sort { ncmp
($customservicegrp{$a}[2],$customservicegrp{$b}[2]) } keys %customservicegrp){
2528 if ($customservicegrp{$key}[0] eq $customservicegrp{$key1}[0])
2536 $grpname=$customservicegrp{$key}[0];
2537 if ($customservicegrp{$key}[2] eq "none"){
2538 $customservicegrp{$key}[2]=$Lang::tr
{'fwhost err emptytable'};
2542 $remark="$customservicegrp{$key}[1]";
2543 if($count >0){print"</table>";$count=1;}
2544 print "<br><b><u>$grpname</u></b> ";
2545 print "<b>$Lang::tr{'remark'}:</b> $remark " if ($remark ne '');
2546 my $srvgrpusedin=&getsrvusedin
($customservicegrp{$key}[0]);
2547 print " <b>$Lang::tr{'used'}:</b> <span title='$srvgrpusedin'>$grpcount x</span>";
2548 if($grpcount == '0')
2550 print"<form method='post' style='display:inline'><input type='image' src='/images/delete.gif' alt='$Lang::tr{'delete'}' title='$Lang::tr{'delete'}' align='right' /><input type='hidden' name='SRVGRP_NAME' value='$grpname' ><input type='hidden' name='ACTION' value='delservicegrp'></form>";
2552 print"<form method='post' style='display:inline'><input type='image' src='/images/edit.gif' alt='$Lang::tr{'edit'}' title='$Lang::tr{'edit'}' align='right' /><input type='hidden' name='SRVGRP_NAME' value='$grpname' ><input type='hidden' name='SRVGRP_REMARK' value='$remark' ><input type='hidden' name='ACTION' value='editservicegrp'></form>";
2553 print"<table width='100%' cellspacing='0' class='tbl'><tr><th align='center'><b>Name</b></th><th align='center'><b>$Lang::tr{'port'}</b></th><th align='center' width='25%'><b>$Lang::tr{'fwhost prot'}</th><th></th></tr>";
2555 if( $fwhostsettings{'SRVGRP_NAME'} eq $customservicegrp{$key}[0]) {
2557 $col="bgcolor='${Header::colouryellow}'";
2558 }elsif ($count %2 == 0){
2560 $col="bgcolor='$color{'color20'}'";
2563 $col="bgcolor='$color{'color22'}'";
2565 #make lines yellow if it is a dummy entry
2566 if ($customservicegrp{$key}[2] eq $Lang::tr
{'fwhost err emptytable'}){
2568 $col="bgcolor='${Header::colouryellow}'";
2570 #Set fields if we use protocols in servicegroups
2571 if ($customservicegrp{$key}[2] ne 'TCP' || $customservicegrp{$key}[2] ne 'UDP' || $customservicegrp{$key}[2] ne 'ICMP'){
2574 if ($customservicegrp{$key}[2] eq 'GRE'){$protocol='GRE';$customservicegrp{$key}[2]="$Lang::tr{'protocol'} GRE";}
2575 if ($customservicegrp{$key}[2] eq 'ESP'){$protocol='ESP';$customservicegrp{$key}[2]="$Lang::tr{'protocol'} ESP";}
2576 if ($customservicegrp{$key}[2] eq 'AH'){$protocol='AH';$customservicegrp{$key}[2]="$Lang::tr{'protocol'} AH";}
2577 if ($customservicegrp{$key}[2] eq 'IGMP'){$protocol='IGMP';$customservicegrp{$key}[2]="$Lang::tr{'protocol'} IGMP";}
2578 if ($customservicegrp{$key}[2] eq 'IPIP'){$protocol='IPIP';$customservicegrp{$key}[2]="$Lang::tr{'protocol'} IPIP";}
2579 if ($customservicegrp{$key}[2] eq 'IPV6'){$protocol='IPV6';$customservicegrp{$key}[2]="$Lang::tr{'protocol'} IPv6 encapsulation";}
2580 print "<td width='39%' $col>$customservicegrp{$key}[2]</td>";
2581 foreach my $srv (sort keys %customservice){
2582 if ($customservicegrp{$key}[2] eq $customservice{$srv}[0]){
2583 $protocol=$customservice{$srv}[2];
2584 $port=$customservice{$srv}[1];
2588 print"<td align='center' $col>$port</td><td align='center' $col>$protocol</td><td width='1%' $col><form method='post'>";
2589 if ($delflag gt '0'){
2590 if ($customservicegrp{$key}[2] ne $Lang::tr
{'fwhost err emptytable'}){
2591 print"<input type='image' src='/images/delete.gif' align='middle' alt='$Lang::tr{'delete'}' title=$Lang::tr{'delete'} />";
2593 #check if this group has only one entry
2594 foreach my $key2 (keys %hash) {
2595 if ($hash{$key2}<2 && $key2 eq $customservicegrp{$key}[0]){
2596 print "<input type='hidden' name='last' value='on'>" ;
2600 print"<input type='hidden' name='ACTION' value='delgrpservice'><input type='hidden' name='updatesrvgrp' value='$fwhostsettings{'updatesrvgrp'}'>";
2601 if($protocol eq 'TCP' || $protocol eq 'UDP' || $protocol eq 'ICMP'){
2602 print "<input type='hidden' name='delsrvfromgrp' value='$grpname,$remark,$customservicegrp{$key}[2]'></form></td></tr>";
2604 print "<input type='hidden' name='delsrvfromgrp' value='$grpname,$remark,$protocol'></form></td></tr>";
2606 $helper=$customservicegrp{$key}[0];
2609 &Header
::closebox
();
2615 my %hash=%{(shift)};
2616 foreach my $key (keys %hash) {
2617 if($hash{$key}[0] eq $fwhostsettings{'HOSTNAME'}){
2626 &General
::readhasharray
("$configgrp", \
%customgrp );
2628 foreach my $key (keys %customservicegrp) {
2629 if($customservicegrp{$key}[0] eq $name){
2637 &General
::readhasharray
("$configsrv", \
%customservice );
2639 foreach my $key (keys %customservice) {
2640 if($customservice{$key}[0] eq $name){
2649 my %hash=%{(shift)};
2651 foreach my $key (keys %hash) {
2652 if($hash{$key}[$a] eq $fwhostsettings{'IP'}."/".&General
::iporsubtodec
($fwhostsettings{'SUBNET'})){
2658 sub checkservicegroup
2660 &General
::readhasharray
("$configsrvgrp", \
%customservicegrp);
2662 if ( ! &validhostname
($fwhostsettings{'SRVGRP_NAME'}))
2664 $errormessage.=$Lang::tr
{'fwhost err name'}."<br>";
2665 return $errormessage;
2667 #check empty selectbox
2668 if (keys %customservice lt 1)
2670 $errormessage.=$Lang::tr
{'fwhost err groupempty'}."<br>";
2672 #check if name already exists
2673 if ($fwhostsettings{'updatesrvgrp'} ne 'on'){
2674 foreach my $key (keys %customservicegrp) {
2675 if( $customservicegrp{$key}[0] eq $fwhostsettings{'SRVGRP_NAME'} ){
2676 $errormessage.=$Lang::tr
{'fwhost err grpexist'}."<br>";
2681 #check if service already exists in group
2682 foreach my $key (keys %customservicegrp) {
2683 if($customservicegrp{$key}[0] eq $fwhostsettings{'SRVGRP_NAME'} && $customservicegrp{$key}[2] eq $fwhostsettings{'CUST_SRV'} ){
2684 $errormessage.=$Lang::tr
{'fwhost err srvexist'}."<br>";
2687 return $errormessage;
2692 &General
::readhasharray
("$fwconfigfwd", \
%fwfwd);
2693 &General
::readhasharray
("$fwconfiginp", \
%fwinp);
2694 &General
::readhasharray
("$fwconfigout", \
%fwout);
2696 #check if service or servicegroup is used in rules
2697 foreach my $key (keys %fwfwd){
2698 if($search eq $fwfwd{$key}[15]){
2699 &General
::firewall_config_changed
();
2703 foreach my $key (keys %fwinp){
2704 if($search eq $fwinp{$key}[15]){
2705 &General
::firewall_config_changed
();
2709 foreach my $key (keys %fwout){
2710 if($search eq $fwout{$key}[15]){
2711 &General
::firewall_config_changed
();
2718 if ($errormessage) {
2719 &Header
::openbox
('100%', 'left', $Lang::tr
{'error messages'});
2720 print "<class name='base'>$errormessage\n";
2721 print " </class>\n";
2722 &Header
::closebox
();
2728 &Header
::openbox
('100%', 'left', $Lang::tr
{'fwhost hint'});
2729 print "<class name='base'>$hint\n";
2730 print " </class>\n";
2731 &Header
::closebox
();
2737 &General
::setup_default_networks
(\
%defaultNetworks);
2738 foreach my $network (sort keys %defaultNetworks)
2740 return "$network" if ($val eq $defaultNetworks{$network}{'NAME'});
2745 my $searchstring=shift;
2747 #Count services used in servicegroups
2748 foreach my $key (keys %customgrp) {
2749 if($customgrp{$key}[2] eq $searchstring){
2753 #Count services used in firewall - config
2754 foreach my $key1 (keys %fwfwd) {
2755 if($fwfwd{$key1}[4] eq $searchstring){
2758 if($fwfwd{$key1}[6] eq $searchstring){
2762 #Count services used in firewall - input
2763 foreach my $key2 (keys %fwinp) {
2764 if($fwinp{$key2}[4] eq $searchstring){
2767 if($fwinp{$key2}[6] eq $searchstring){
2771 #Count services used in firewall - outgoing
2772 foreach my $key3 (keys %fwout) {
2773 if($fwout{$key3}[4] eq $searchstring){
2776 if($fwout{$key3}[6] eq $searchstring){
2782 sub getlocationcount
2784 my $groupname=shift;
2787 # Location groups are stored as "group:groupname" in the
2788 # firewall settings files.
2789 my $searchstring = join(':', "group",$groupname);
2791 # Count services used in firewall - forward
2792 foreach my $key1 (keys %fwfwd) {
2793 if($fwfwd{$key1}[4] eq $searchstring){
2796 if($fwfwd{$key1}[6] eq $searchstring){
2800 #Count services used in firewall - input
2801 foreach my $key2 (keys %fwinp) {
2802 if($fwinp{$key2}[4] eq $searchstring){
2805 if($fwinp{$key2}[6] eq $searchstring){
2809 #Count services used in firewall - outgoing
2810 foreach my $key3 (keys %fwout) {
2811 if($fwout{$key3}[4] eq $searchstring){
2814 if($fwout{$key3}[6] eq $searchstring){
2822 my $groupname=shift;
2825 # Location groups are stored as "group:groupname" in the
2826 # firewall settings files.
2827 my $searchstring = join(':', "group",$groupname);
2829 #Count services used in firewall - config
2831 # first set title if found
2832 foreach my $key1 (keys %fwfwd) {
2833 if($fwfwd{$key1}[4] eq $searchstring){
2834 $fwfwtext = "$Lang::tr{'firewall rules'}:";
2836 if($fwfwd{$key1}[6] eq $searchstring){
2837 $fwfwtext = "$Lang::tr{'firewall rules'}:";
2840 # then add rule numbers
2842 foreach my $key1 (keys %fwfwd) {
2843 if($fwfwd{$key1}[4] eq $searchstring){
2844 push(@fwfwrules, $key1);
2846 if($fwfwd{$key1}[6] eq $searchstring){
2847 push(@fwfwrules, $key1);
2850 my @fwfwarraysorted = sort { $a <=> $b } @fwfwrules;
2851 foreach my $rule (@fwfwarraysorted)
2853 $fwfwtext .= "
- $rule";
2855 #Count services used in firewall - input
2857 foreach my $key2 (keys %fwinp) {
2858 if($fwinp{$key2}[4] eq $searchstring){
2859 $fwintext = "$Lang::tr{'incoming firewall access'}:";
2861 if($fwinp{$key2}[6] eq $searchstring){
2862 $fwintext = "$Lang::tr{'incoming firewall access'}:";
2866 foreach my $key2 (keys %fwinp) {
2867 if($fwinp{$key2}[4] eq $searchstring){
2868 push(@fwinrules, $key2);
2870 if($fwinp{$key2}[6] eq $searchstring){
2871 push(@fwinrules, $key2);
2874 my @fwinarraysorted = sort { $a <=> $b } @fwinrules;
2875 foreach my $rule (@fwinarraysorted)
2877 $fwintext .= "
- $rule";
2879 #Count services used in firewall - outgoing
2881 foreach my $key3 (keys %fwout) {
2882 if($fwout{$key3}[4] eq $searchstring){
2883 $fwouttext = "$Lang::tr{'outgoing firewall access'}:";
2885 if($fwout{$key3}[6] eq $searchstring){
2886 $fwouttext = "$Lang::tr{'outgoing firewall access'}:";
2889 my @fwoutrules = ();
2890 foreach my $key3 (keys %fwout) {
2891 if($fwout{$key3}[4] eq $searchstring){
2892 push(@fwoutrules, $key3);
2894 if($fwout{$key3}[6] eq $searchstring){
2895 push(@fwoutrules, $key3);
2898 my @fwoutarraysorted = sort { $a <=> $b } @fwoutrules;
2899 foreach my $rule (@fwoutarraysorted)
2901 $fwouttext .= "
- $rule";
2904 $titletext .= "$fwfwtext"
2908 $titletext .= "
 "
2910 $titletext .= "$fwintext"
2914 $titletext .= "
 "
2916 $titletext .= "$fwouttext"
2922 my $searchstring=shift;
2924 #Count services used in servicegroups
2925 foreach my $key (keys %customgrp) {
2926 if($customgrp{$key}[2] eq $searchstring){
2930 #Count services used in firewall - config
2931 foreach my $key1 (keys %fwfwd) {
2932 if($fwfwd{$key1}[4] eq $searchstring){
2935 if($fwfwd{$key1}[6] eq $searchstring){
2939 #Count services used in firewall - input
2940 foreach my $key2 (keys %fwinp) {
2941 if($fwinp{$key2}[4] eq $searchstring){
2944 if($fwinp{$key2}[6] eq $searchstring){
2948 #Count services used in firewall - outgoing
2949 foreach my $key3 (keys %fwout) {
2950 if($fwout{$key3}[4] eq $searchstring){
2953 if($fwout{$key3}[6] eq $searchstring){
2961 my $searchstring=shift;
2966 #Count services used in Network/Host group
2967 my $servicegrouptext="";
2968 foreach my $key (keys %customgrp) {
2969 if($customgrp{$key}[2] eq $searchstring){
2970 $servicegrouptext = "$Lang::tr{'fwhost cust grp'}:";
2973 foreach my $key (keys %customgrp) {
2974 if($customgrp{$key}[2] eq $searchstring){
2975 $servicegrouptext .= "
- $customgrp{$key}[0]";
2978 #Count services used in firewall - config
2980 # first set title if found
2981 foreach my $key1 (keys %fwfwd) {
2982 if($fwfwd{$key1}[4] eq $searchstring){
2983 $fwfwtext = "$Lang::tr{'firewall rules'}:";
2985 if($fwfwd{$key1}[6] eq $searchstring){
2986 $fwfwtext = "$Lang::tr{'firewall rules'}:";
2989 # then add rule numbers
2991 foreach my $key1 (keys %fwfwd) {
2992 if($fwfwd{$key1}[4] eq $searchstring){
2993 push(@fwfwrules, $key1);
2995 if($fwfwd{$key1}[6] eq $searchstring){
2996 push(@fwfwrules, $key1);
2999 my @fwfwarraysorted = sort { $a <=> $b } @fwfwrules;
3000 foreach my $rule (@fwfwarraysorted)
3002 $fwfwtext .= "
- $rule";
3004 #Count services used in firewall - input
3006 foreach my $key2 (keys %fwinp) {
3007 if($fwinp{$key2}[4] eq $searchstring){
3008 $fwintext = "$Lang::tr{'incoming firewall access'}:";
3010 if($fwinp{$key2}[6] eq $searchstring){
3011 $fwintext = "$Lang::tr{'incoming firewall access'}:";
3015 foreach my $key2 (keys %fwinp) {
3016 if($fwinp{$key2}[4] eq $searchstring){
3017 push(@fwinrules, $key2);
3019 if($fwinp{$key2}[6] eq $searchstring){
3020 push(@fwinrules, $key2);
3023 my @fwinarraysorted = sort { $a <=> $b } @fwinrules;
3024 foreach my $rule (@fwinarraysorted)
3026 $fwintext .= "
- $rule";
3028 #Count services used in firewall - outgoing
3030 foreach my $key3 (keys %fwout) {
3031 if($fwout{$key3}[4] eq $searchstring){
3032 $fwouttext = "$Lang::tr{'outgoing firewall access'}:";
3034 if($fwout{$key3}[6] eq $searchstring){
3035 $fwouttext = "$Lang::tr{'outgoing firewall access'}:";
3038 my @fwoutrules = ();
3039 foreach my $key3 (keys %fwout) {
3040 if($fwout{$key3}[4] eq $searchstring){
3041 push(@fwoutrules, $key3);
3043 if($fwout{$key3}[6] eq $searchstring){
3044 push(@fwoutrules, $key3);
3047 my @fwoutarraysorted = sort { $a <=> $b } @fwoutrules;
3048 foreach my $rule (@fwoutarraysorted)
3050 $fwouttext .= "
- $rule";
3052 if ($servicegrouptext) {
3053 $titletext .= "$servicegrouptext"
3057 $titletext .= "
 "
3059 $titletext .= "$fwfwtext"
3063 $titletext .= "
 "
3065 $titletext .= "$fwintext"
3069 $titletext .= "
 "
3071 $titletext .= "$fwouttext"
3077 my $searchstring=shift;
3079 #Count services used in servicegroups
3080 foreach my $key (keys %customservicegrp) {
3081 if($customservicegrp{$key}[2] eq $searchstring){
3085 #Count services used in firewall - config
3086 foreach my $key1 (keys %fwfwd) {
3087 if($fwfwd{$key1}[15] eq $searchstring){
3091 #Count services used in firewall - input
3092 foreach my $key2 (keys %fwinp) {
3093 if($fwinp{$key2}[15] eq $searchstring){
3097 #Count services used in firewall - outgoing
3098 foreach my $key3 (keys %fwout) {
3099 if($fwout{$key3}[15] eq $searchstring){
3107 my $searchstring=shift;
3109 #Count services used in servicegroups
3110 my $servicegrouptext="";
3111 foreach my $key (keys %customservicegrp) {
3112 if($customservicegrp{$key}[2] eq $searchstring){
3113 $servicegrouptext = "$Lang::tr{'outgoing firewall access'}:";
3116 foreach my $key (keys %customservicegrp) {
3117 if($customservicegrp{$key}[2] eq $searchstring){
3118 $servicegrouptext .= "
- $customservicegrp{$key}[0]";
3122 # first set title if found
3123 foreach my $key1 (keys %fwfwd) {
3124 if($fwfwd{$key1}[15] eq $searchstring){
3125 $fwfwtext = "$Lang::tr{'firewall rules'}:";
3128 # then add rule numbers
3130 foreach my $key1 (keys %fwfwd) {
3131 if($fwfwd{$key1}[15] eq $searchstring){
3132 push(@fwfwrules, $key1);
3135 my @fwfwarraysorted = sort { $a <=> $b } @fwfwrules;
3136 foreach my $rule (@fwfwarraysorted)
3138 $fwfwtext .= "
- $rule";
3140 #Count services used in firewall - input
3142 foreach my $key2 (keys %fwinp) {
3143 if($fwinp{$key2}[15] eq $searchstring){
3144 $fwintext = "$Lang::tr{'incoming firewall access'}:";
3148 foreach my $key2 (keys %fwinp) {
3149 if($fwinp{$key2}[15] eq $searchstring){
3150 push(@fwinrules, $key2);
3153 my @fwinarraysorted = sort { $a <=> $b } @fwinrules;
3154 foreach my $rule (@fwinarraysorted)
3156 $fwintext .= "
- $rule";
3158 #Count services used in firewall - outgoing
3160 foreach my $key3 (keys %fwout) {
3161 if($fwout{$key3}[15] eq $searchstring){
3162 $fwouttext = "$Lang::tr{'outgoing firewall access'}:";
3165 my @fwoutrules = ();
3166 foreach my $key3 (keys %fwout) {
3167 if($fwout{$key3}[15] eq $searchstring){
3168 push(@fwoutrules, $key3);
3171 my @fwoutarraysorted = sort { $a <=> $b } @fwoutrules;
3172 foreach my $rule (@fwoutarraysorted)
3174 $fwouttext .= "
- $rule";
3176 if ($servicegrouptext ne '') {
3177 $titletext .= "$servicegrouptext";
3179 if ($fwfwtext ne '') {
3181 $titletext .= "
 ";
3183 $titletext .= "$fwfwtext";
3185 if ($fwintext ne '') {
3187 $titletext .= "
 ";
3189 $titletext .= "$fwintext";
3192 if ($titletext ne '') {
3193 $titletext .= "
 ";
3195 $titletext .= "$fwouttext";
3204 &General
::readhasharray
("$config",\
%hash);
3205 foreach my $key (keys %hash) {
3206 if($hash{$key}[2] eq $target){
3210 &General
::writehasharray
("$config",\
%hash);
3217 if (!&validhostname
($fwhostsettings{'HOSTNAME'}))
3219 $errormessage=$errormessage.$Lang::tr
{'fwhost err name'};
3220 $fwhostsettings{'BLK_IP'}='readonly';
3221 $fwhostsettings{'HOSTNAME'} = $fwhostsettings{'orgname'};
3222 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;}
3224 #check if name collides with CCD Netname
3225 &General
::readhasharray
("$configccdnet", \
%ccdnet);
3226 foreach my $key (keys %ccdnet) {
3227 if($ccdnet{$key}[0] eq $fwhostsettings{'HOSTNAME'}){
3228 $errormessage=$errormessage.$Lang::tr
{'fwhost err isccdnet'};;
3229 $fwhostsettings{'HOSTNAME'} = $fwhostsettings{'orgname'};
3230 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;}
3234 #check if IP collides with CCD NetIP
3235 if ($fwhostsettings{'type'} ne 'mac'){
3236 &General
::readhasharray
("$configccdnet", \
%ccdnet);
3237 foreach my $key (keys %ccdnet) {
3238 my $test=(&General
::getnetworkip
($fwhostsettings{'IP'},&General
::iporsubtocidr
($fwhostsettings{'SUBNET'})))."/".$fwhostsettings{'SUBNET'};
3239 if($ccdnet{$key}[1] eq $test){
3240 $errormessage=$errormessage.$Lang::tr
{'fwhost err isccdipnet'};
3241 $fwhostsettings{'IP'} = $fwhostsettings{'orgip'};
3242 $fwhostsettings{'SUBNET'} = $fwhostsettings{'orgsubnet'};
3243 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;}
3248 #check if name collides with CCD Hostname
3249 &General
::readhasharray
("$configccdhost", \
%ccdhost);
3250 foreach my $key (keys %ccdhost) {
3251 my ($ip,$sub)=split(/\//,$ccdhost{$key}[33]);
3252 if($ip eq $fwhostsettings{'IP'}){
3253 $errormessage=$Lang::tr
{'fwhost err isccdiphost'};
3254 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;}
3258 #check if IP collides with CCD HostIP (only hosts)
3259 if ($edit eq 'edithost')
3261 foreach my $key (keys %ccdhost) {
3262 if($ccdhost{$key}[1] eq $fwhostsettings{'HOSTNAME'}){
3263 $errormessage=$Lang::tr
{'fwhost err isccdhost'};
3264 $fwhostsettings{'IP'} = $fwhostsettings{'orgname'};
3265 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;}
3270 #check if network with this name already exists
3271 &General
::readhasharray
("$confignet", \
%customnetwork);
3272 if (!&checkname
(\
%customnetwork))
3274 $errormessage=$errormessage."<br>".$Lang::tr
{'fwhost err netexist'};
3275 $fwhostsettings{'HOSTNAME'} = $fwhostsettings{'orgname'};
3276 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;}
3278 #check if network ip already exists
3279 if (!&checkip
(\
%customnetwork,1))
3281 $errormessage=$errormessage."<br>".$Lang::tr
{'fwhost err net'};
3282 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;}
3284 #check if host with this name already exists
3285 &General
::readhasharray
("$confighost", \
%customhost);
3286 if (!&checkname
(\
%customhost))
3288 $errormessage.="<br>".$Lang::tr
{'fwhost err hostexist'};
3289 $fwhostsettings{'HOSTNAME'} = $fwhostsettings{'orgname'};
3290 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;}
3292 #check if host with this ip already exists
3293 if (!&checkip
(\
%customhost,2))
3295 $errormessage=$errormessage."<br>".$Lang::tr
{'fwhost err ipcheck'};
3305 #get address from IPSEC NETWORK
3306 if ($type eq 'IpSec Network'){
3307 foreach my $key (keys %ipsecconf) {
3308 if ($ipsecconf{$key}[1] eq $name){
3309 if ($ipsecconf{$key}[11] =~ /\|/) {
3311 my @parts = split /\|/ , $ipsecconf{$key}[11];
3312 foreach my $key1 (@parts){
3313 my ($val1,$val2) = split (/\//, $key1);
3314 my $val3 = &Network
::convert_netmask2prefix
($val2) || $val2;
3315 $string .= "$val1/$val3<br>";
3319 return $ipsecconf{$key}[11];
3322 if ($name =~ /\|/) {
3323 my ($a,$b) = split /\|/, $name;
3328 &deletefromgrp
($name,$configgrp);
3331 #get address from IPSEC HOST
3332 if ($type eq 'IpSec Host'){
3333 foreach my $key (keys %ipsecconf) {
3334 if ($ipsecconf{$key}[1] eq $name){
3335 return $ipsecconf{$key}[10];
3338 &deletefromgrp
($name,$configgrp);
3342 if ($type eq "wg_peer") {
3343 my $peer = &Wireguard
::get_peer_by_name
($name);
3345 if (defined $peer) {
3348 if ($peer->{"TYPE"} eq "host") {
3349 push(@addresses, @
{ $peer->{"CLIENT_ADDRESS"} });
3350 } elsif ($peer->{"TYPE"} eq "net") {
3351 push(@addresses, @
{ $peer->{"REMOTE_SUBNETS"} });
3354 return join(", ", @addresses);
3358 #get address from ovpn ccd Net-2-Net
3359 if ($type eq 'OpenVPN N-2-N'){
3360 foreach my $key (keys %ccdhost) {
3361 if($ccdhost{$key}[1] eq $name){
3362 my ($a,$b) = split ("/",$ccdhost{$key}[11]);
3363 $b=&Network
::convert_netmask2prefix
($b) || ($b);
3367 &deletefromgrp
($name,$configgrp);
3370 #get address from ovpn ccd static host
3371 if ($type eq 'OpenVPN static host'){
3372 foreach my $key (keys %ccdhost) {
3373 if($ccdhost{$key}[1] eq $name){
3374 my ($a,$b) = split (/\//,$ccdhost{$key}[33]);
3375 $b=&Network
::convert_netmask2prefix
($b) || ($b) ;
3379 &deletefromgrp
($name,$configgrp);
3382 #get address from ovpn ccd static net
3383 if ($type eq 'OpenVPN static network'){
3384 foreach my $key (keys %ccdnet) {
3385 if ($ccdnet{$key}[0] eq $name){
3386 my ($a,$b) = split (/\//,$ccdnet{$key}[1]);
3387 $b=&Network
::convert_netmask2prefix
($b) || ($b);
3393 #check custom addresses
3394 if ($type eq 'Custom Host'){
3395 foreach my $key (keys %customhost) {
3396 if ($customhost{$key}[0] eq $name){
3397 my ($ip,$sub) = split("/",$customhost{$key}[2]);
3403 ##check custom networks
3404 if ($type eq 'Custom Network'){
3405 foreach my $key (keys %customnetwork) {
3406 if($customnetwork{$key}[0] eq $name){
3407 return $customnetwork{$key}[1]."/".&Network
::convert_netmask2prefix
($customnetwork{$key}[2]) || $customnetwork{$key}[2];
3412 #check standard networks
3413 if ($type eq 'Standard Network'){
3414 if ($name =~ /OpenVPN/i){
3416 &General
::readhash
("${General::swroot}/ovpn/settings",\
%ovpn);
3417 return $ovpn{'DOVPN_SUBNET'};
3419 if ($name eq 'GREEN'){
3421 &General
::readhash
("${General::swroot}/ethernet/settings",\
%hash);
3422 return $hash{'GREEN_NETADDRESS'}."/".&Network
::convert_netmask2prefix
($hash{'GREEN_NETMASK'}) || $hash{'GREEN_NETMASK'};
3424 if ($name eq 'BLUE'){
3426 &General
::readhash
("${General::swroot}/ethernet/settings",\
%hash);
3427 return $hash{'BLUE_NETADDRESS'}."/".&Network
::convert_netmask2prefix
($hash{'BLUE_NETMASK'}) || $hash{'BLUE_NETMASK'};
3429 if ($name eq 'ORANGE'){
3431 &General
::readhash
("${General::swroot}/ethernet/settings",\
%hash);
3432 return $hash{'ORANGE_NETADDRESS'}."/".&Network
::convert_netmask2prefix
($hash{'ORANGE_NETMASK'}) || $hash{'ORANGE_NETMASK'};
3434 if ($name eq "WGRW") {
3435 return $Wireguard::settings
{'CLIENT_POOL'};
3437 if ($name eq 'ALL'){
3440 if ($name =~ /IPsec/i){
3442 &General
::readhash
("${General::swroot}/vpn/settings",\
%hash);
3443 return $hash{'RW_NET'};
3445 if ($name eq 'RED'){
3453 &General
::readhasharray
("$confignet", \
%customnetwork);
3454 &General
::readhasharray
("$confighost", \
%customhost);
3455 foreach my $key (sort keys %customgrp ){
3456 if ( ($customgrp{$key}[0] eq $grp) && ($customgrp{$key}[3] eq 'Custom Network')){
3457 foreach my $key1 (sort keys %customnetwork){
3458 if ($customnetwork{$key1}[0] eq $customgrp{$key}[2]){
3459 $customnetwork{$key1}[4]=$customnetwork{$key1}[4]-1;
3465 if (($customgrp{$key}[0] eq $grp) && ($customgrp{$key}[3] eq 'Custom Host')){
3466 foreach my $key2 (sort keys %customhost){
3467 if ($customhost{$key2}[0] eq $customgrp{$key}[2]){
3468 $customhost{$key2}[4]=$customhost{$key2}[4]-1;
3475 &General
::writehasharray
("$confignet", \
%customnetwork);
3476 &General
::writehasharray
("$confighost", \
%customhost);
3481 &General
::readhasharray
("$configsrv", \
%customservice);
3482 &General
::readhasharray
("$configsrvgrp", \
%customservicegrp);
3484 foreach my $key (sort keys %customservicegrp){
3485 if ($customservicegrp{$key}[0] eq $grp ){
3486 foreach my $key2 (sort keys %customservice){
3487 if ($customservice{$key2}[0] eq $customservicegrp{$key}[2]){
3488 $customservice{$key2}[4]--;
3493 &General
::writehasharray
("$configsrv", \
%customservice);
3503 if ($type eq 'location'){
3507 &General
::readhasharray
("$fwconfigfwd", \
%fwfwd);
3508 &General
::readhasharray
("$fwconfiginp", \
%fwinp);
3509 &General
::readhasharray
("$fwconfigout", \
%fwout);
3510 #Rename group in Firewall-CONFIG
3511 foreach my $key1 (keys %fwfwd) {
3512 if($fwfwd{$key1}[$fld] eq $old){
3513 $fwfwd{$key1}[$fld]=$new;
3516 &General
::writehasharray
("$fwconfigfwd", \
%fwfwd );
3517 #Rename group in Firewall-INPUT
3518 foreach my $key2 (keys %fwinp) {
3519 if($fwinp{$key2}[$fld] eq $old){
3520 $fwinp{$key2}[$fld]=$new;
3523 &General
::writehasharray
("$fwconfiginp", \
%fwinp );
3524 #Rename group in Firewall-OUTGOING
3525 foreach my $key3 (keys %fwout) {
3526 if($fwout{$key3}[$fld] eq $old){
3527 $fwout{$key3}[$fld]=$new;
3530 &General
::writehasharray
("$fwconfigout", \
%fwout );
3535 my %hash=%{(shift)};
3537 if ($fwhostsettings{'SRV_NAME'} eq '' ){
3538 $errormessage=$Lang::tr
{'fwhost err name1'};
3540 if ($fwhostsettings{'SRV_PORT'} eq '' && $fwhostsettings{'PROT'} ne 'ICMP'){
3541 $errormessage=$Lang::tr
{'fwhost err port'};
3544 if (! &validhostname
($fwhostsettings{'SRV_NAME'})){
3545 $errormessage="<br>".$Lang::tr
{'fwhost err name'};
3547 #change dashes with :
3548 $fwhostsettings{'SRV_PORT'}=~ tr/-/:/;
3550 if ($fwhostsettings{'SRV_PORT'} eq "*") {
3551 $fwhostsettings{'SRV_PORT'} = "1:65535";
3553 if ($fwhostsettings{'SRV_PORT'} =~ /^(\D)\:(\d+)$/) {
3554 $fwhostsettings{'SRV_PORT'} = "1:$2";
3556 if ($fwhostsettings{'SRV_PORT'} =~ /^(\d+)\:(\D)$/) {
3557 $fwhostsettings{'SRV_PORT'} = "$1:65535";
3559 if($fwhostsettings{'PROT'} ne 'ICMP'){
3560 $errormessage = $errormessage.&General
::validportrange
($fwhostsettings{'SRV_PORT'}, 'src');
3562 # a new service has to have a different name
3563 foreach my $key (keys %hash){
3564 if ($hash{$key}[0] eq $fwhostsettings{'SRV_NAME'}){
3565 $errormessage = "<br>".$Lang::tr
{'fwhost err srv exists'};
3569 return $errormessage;
3573 # Checks a hostname against RFC1035
3574 my $hostname = $_[0];
3576 # Each part should be at least two characters in length
3577 # but no more than 63 characters
3578 if (length ($hostname) < 1 || length ($hostname) > 63) {
3580 # Only valid characters are a-z, A-Z, 0-9 and -
3581 if ($hostname !~ /^[a-zA-ZäöüÖÄÜ0-9-_.;()\/\s
]*$/) {
3583 # First character can only be a letter or a digit
3584 if (substr ($hostname, 0, 1) !~ /^[a-zA-ZöäüÖÄÜ0-9]*$/) {
3586 # Last character can only be a letter or a digit
3587 if (substr ($hostname, -1, 1) !~ /^[a-zA-ZöäüÖÄÜ0-9()]*$/) {
3593 # Checks a hostname against RFC1035
3595 # Each part should be at least two characters in length
3596 # but no more than 63 characters
3597 if (length ($remark) < 1 || length ($remark) > 255) {
3599 # Only valid characters are a-z, A-Z, 0-9 and -
3600 if ($remark !~ /^[a-zäöüA-ZÖÄÜ0-9-.:;\|_()\/\s
]*$/) {
3602 # First character can only be a letter or a digit
3603 if (substr ($remark, 0, 1) !~ /^[a-zäöüA-ZÖÄÜ0-9]*$/) {
3605 # Last character can only be a letter or a digit
3606 if (substr ($remark, -1, 1) !~ /^[a-zöäüA-ZÖÄÜ0-9.:;_)]*$/) {
3610 &Header
::closebigbox
();
3611 &Header
::closepage
();