]>
git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blob - html/cgi-bin/fwhosts.cgi
2 ###############################################################################
4 # IPFire.org - A linux based firewall #
5 # Copyright (C) 2011 IPFire Team <info@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 ###############################################################################
21 # New function for forwarding firewall. To make it comfortable to create #
22 # rules, we need "spelling names" for single Hosts. If you have any questions #
23 # <amarx@ipfire.org> #
24 ###############################################################################
27 # enable only the following on debugging purpose
30 use CGI
::Carp
'fatalsToBrowser';
31 no warnings
'uninitialized';
32 require '/var/ipfire/general-functions.pl';
33 require "${General::swroot}/lang.pl";
34 require "${General::swroot}/header.pl";
36 my %fwhostsettings=();
41 my %customservicegrp=();
47 my %defaultNetworks=();
57 my $confignet = "${General::swroot}/fwhosts/customnetworks";
58 my $confighost = "${General::swroot}/fwhosts/customhosts";
59 my $configgrp = "${General::swroot}/fwhosts/customgroups";
60 my $configccdnet = "${General::swroot}/ovpn/ccd.conf";
61 my $configccdhost = "${General::swroot}/ovpn/ovpnconfig";
62 my $configipsec = "${General::swroot}/vpn/config";
63 my $configsrv = "${General::swroot}/fwhosts/customservices";
64 my $configsrvgrp = "${General::swroot}/fwhosts/customservicegrp";
65 my $fwconfigfwd = "${General::swroot}/forward/config";
66 my $fwconfiginp = "${General::swroot}/forward/input";
68 unless (-e
$confignet) { system("touch $confignet"); }
69 unless (-e
$confighost) { system("touch $confighost"); }
70 unless (-e
$configgrp) { system("touch $configgrp"); }
71 unless (-e
$configsrv) { system("touch $configsrv"); }
72 unless (-e
$configsrvgrp) { system("touch $configsrvgrp"); }
74 &General
::readhash
("${General::swroot}/main/settings", \
%mainsettings);
75 &General
::readhash
("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \
%color);
76 &General
::readhash
("${General::swroot}/ethernet/settings", \
%ownnet);
77 &Header
::getcgihash
(\
%fwhostsettings);
79 &Header
::showhttpheaders
();
80 &Header
::openpage
($Lang::tr
{'fwhost hosts'}, 1, '');
81 &Header
::openbigbox
('100%', 'center');
84 if ($fwhostsettings{'ACTION'} eq $Lang::tr
{'fwdfw reread'})
90 if ($fwhostsettings{'ACTION'} eq 'updatenet' )
92 &General
::readhasharray
("$confignet", \
%customnetwork);
93 foreach my $key (keys %customnetwork)
95 if($customnetwork{$key}[0] eq $fwhostsettings{'orgname'})
97 $fwhostsettings{'orgname'} = $customnetwork{$key}[0];
98 $fwhostsettings{'orgip'} = $customnetwork{$key}[1];
99 $fwhostsettings{'orgsub'} = $customnetwork{$key}[2];
100 $fwhostsettings{'netremark'} = $customnetwork{$key}[3];
101 $fwhostsettings{'count'} = $customnetwork{$key}[4];
102 delete $customnetwork{$key};
106 &General
::writehasharray
("$confignet", \
%customnetwork);
107 $fwhostsettings{'actualize'} = 'on';
108 $fwhostsettings{'ACTION'} = 'savenet';
110 if ($fwhostsettings{'ACTION'} eq 'updatehost')
113 &General
::readhasharray
("$confighost", \
%customhost);
114 foreach my $key (keys %customhost)
116 if($customhost{$key}[0] eq $fwhostsettings{'orgname'})
118 if ($customhost{$key}[1] eq 'ip'){
119 ($ip,$subnet) = split (/\//,$customhost{$key}[2]);
121 $ip = $customhost{$key}[2];
123 $fwhostsettings{'orgip'} = $ip;
124 $fwhostsettings{'count'} = $customhost{$key}[4];
125 delete $customhost{$key};
126 &General
::writehasharray
("$confighost", \
%customhost);
129 $fwhostsettings{'actualize'} = 'on';
130 if($fwhostsettings{'orgip'}){
131 $fwhostsettings{'ACTION'} = 'savehost';
133 $fwhostsettings{'ACTION'} = $Lang::tr
{'fwhost newhost'};
136 if ($fwhostsettings{'ACTION'} eq 'updateservice')
140 $errormessage=&checkports
(\
%customservice);
142 &General
::readhasharray
("$configsrv", \
%customservice);
143 foreach my $key (keys %customservice)
145 if ($customservice{$key}[0] eq $fwhostsettings{'oldsrvname'})
147 $count=$customservice{$key}[4];
148 delete $customservice{$key};
149 &General
::writehasharray
("$configsrv", \
%customservice);
153 if ($fwhostsettings{'PROT'} ne 'ICMP'){
154 $fwhostsettings{'ICMP_TYPES'}='BLANK';
156 my $key1 = &General
::findhasharraykey
(\
%customservice);
157 foreach my $i (0 .. 4) { $customservice{$key1}[$i] = "";}
158 $customservice{$key1}[0] = $fwhostsettings{'SRV_NAME'};
159 $customservice{$key1}[1] = $fwhostsettings{'SRV_PORT'};
160 $customservice{$key1}[2] = $fwhostsettings{'PROT'};
161 $customservice{$key1}[3] = $fwhostsettings{'ICMP_TYPES'};
162 $customservice{$key1}[4] = $count;
163 &General
::writehasharray
("$configsrv", \
%customservice);
164 #check if we need to update firewallrules
165 if ($fwhostsettings{'SRV_NAME'} ne $fwhostsettings{'oldsrvname'}){
166 if ( ! -z
$fwconfigfwd ){
167 &General
::readhasharray
("$fwconfigfwd", \
%fwfwd);
168 foreach my $key (sort keys %fwfwd){
169 if ($fwfwd{$key}[15] eq $fwhostsettings{'oldsrvname'}){
170 $fwfwd{$key}[15] = $fwhostsettings{'SRV_NAME'};
173 &General
::writehasharray
("$fwconfigfwd", \
%fwfwd);
175 if ( ! -z
$fwconfiginp ){
176 &General
::readhasharray
("$fwconfiginp", \
%fwinp);
177 foreach my $line (sort keys %fwinp){
178 if ($fwfwd{$line}[15] eq $fwhostsettings{'oldsrvname'}){
179 $fwfwd{$line}[15] = $fwhostsettings{'SRV_NAME'};
182 &General
::writehasharray
("$fwconfiginp", \
%fwinp);
184 #check if we need to update groups
185 &General
::readhasharray
("$configsrvgrp", \
%customservicegrp);
186 foreach my $key (sort keys %customservicegrp){
187 if($customservicegrp{$key}[2] eq $fwhostsettings{'oldsrvname'}){
188 $customservicegrp{$key}[2] = $fwhostsettings{'SRV_NAME'};
191 &General
::writehasharray
("$configsrvgrp", \
%customservicegrp);
194 if($count gt 0 && $fwhostsettings{'oldsrvport'} ne $fwhostsettings{'SRV_PORT'} ){
197 if($count gt 0 && $fwhostsettings{'oldsrvprot'} ne $fwhostsettings{'PROT'} ){
200 $fwhostsettings{'SRV_NAME'} = '';
201 $fwhostsettings{'SRV_PORT'} = '';
202 $fwhostsettings{'PROT'} = '';
204 $fwhostsettings{'SRV_NAME'} = $fwhostsettings{'oldsrvname'};
205 $fwhostsettings{'SRV_PORT'} = $fwhostsettings{'oldsrvport'};
206 $fwhostsettings{'PROT'} = $fwhostsettings{'oldsrvprot'};
207 $fwhostsettings{'updatesrv'}= 'on';
209 if($needrules eq 'on'){
215 if ($fwhostsettings{'ACTION'} eq 'savenet' )
219 if ($fwhostsettings{'orgname'} eq ''){$fwhostsettings{'orgname'}=$fwhostsettings{'HOSTNAME'};}
220 #check if all fields are set
221 if ($fwhostsettings{'HOSTNAME'} eq '' || $fwhostsettings{'IP'} eq '' || $fwhostsettings{'SUBNET'} eq '')
223 $errormessage=$errormessage.$Lang::tr
{'fwhost err empty'};
228 if (!&General
::validipandmask
($fwhostsettings{'IP'}."/".$fwhostsettings{'SUBNET'}))
230 $errormessage=$errormessage.$Lang::tr
{'fwhost err addr'};
231 $fwhostsettings{'BLK_HOST'} ='readonly';
232 $fwhostsettings{'NOCHECK'} ='false';
233 $fwhostsettings{'error'} ='on';
236 if ($fwhostsettings{'NETREMARK'} ne '' && !&validremark
($fwhostsettings{'NETREMARK'})){
237 $errormessage=$Lang::tr
{'fwhost err remark'};
238 $fwhostsettings{'error'} ='on';
240 #check if subnet is sigle host
241 if(&General
::iporsubtocidr
($fwhostsettings{'SUBNET'}) eq '32')
243 $errormessage=$errormessage.$Lang::tr
{'fwhost err sub32'};
245 if($fwhostsettings{'error'} ne 'on'){
246 #check if we use one of ipfire's networks (green,orange,blue)
247 if (($ownnet{'GREEN_NETADDRESS'} ne '' && $ownnet{'GREEN_NETADDRESS'} ne '0.0.0.0') && &General
::IpInSubnet
($fwhostsettings{'IP'},$ownnet{'GREEN_NETADDRESS'},$ownnet{'GREEN_NETMASK'}))
249 $errormessage=$errormessage.$Lang::tr
{'ccd err green'}."<br>";
250 $fwhostsettings{'HOSTNAME'} = $fwhostsettings{'orgname'};
251 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}='editnet';}
253 if (($ownnet{'ORANGE_NETADDRESS'} ne '' && $ownnet{'ORANGE_NETADDRESS'} ne '0.0.0.0') && &General
::IpInSubnet
($fwhostsettings{'IP'},$ownnet{'ORANGE_NETADDRESS'},$ownnet{'ORANGE_NETMASK'}))
255 $errormessage=$errormessage.$Lang::tr
{'ccd err orange'}."<br>";
256 $fwhostsettings{'HOSTNAME'} = $fwhostsettings{'orgname'};
257 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}='editnet';}
259 if (($ownnet{'BLUE_NETADDRESS'} ne '' && $ownnet{'BLUE_NETADDRESS'} ne '0.0.0.0') && &General
::IpInSubnet
($fwhostsettings{'IP'},$ownnet{'BLUE_NETADDRESS'},$ownnet{'BLUE_NETMASK'}))
261 $errormessage=$errormessage.$Lang::tr
{'ccd err blue'}."<br>";
262 $fwhostsettings{'HOSTNAME'} = $fwhostsettings{'orgname'};
263 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}='editnet';}
265 if (($ownnet{'RED_NETADDRESS'} ne '' && $ownnet{'RED_NETADDRESS'} ne '0.0.0.0') && &General
::IpInSubnet
($fwhostsettings{'IP'},$ownnet{'RED_NETADDRESS'},$ownnet{'RED_NETMASK'}))
267 $errormessage=$errormessage.$Lang::tr
{'ccd err red'}."<br>";
268 $fwhostsettings{'HOSTNAME'} = $fwhostsettings{'orgname'};
269 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}='editnet';}
272 #only check plausi when no error till now
274 &plausicheck
("editnet");
276 #check if network ip is part of an already used one
277 if(&checksubnet
(\
%customnetwork))
279 $errormessage=$errormessage.$Lang::tr
{'fwhost err partofnet'};
280 $fwhostsettings{'HOSTNAME'} = $fwhostsettings{'orgname'};
282 if($fwhostsettings{'actualize'} eq 'on' && $fwhostsettings{'newnet'} ne 'on' && $errormessage)
284 $fwhostsettings{'actualize'} = '';
285 my $key = &General
::findhasharraykey
(\
%customnetwork);
286 foreach my $i (0 .. 3) { $customnetwork{$key}[$i] = "";}
287 $customnetwork{$key}[0] = $fwhostsettings{'orgname'} ;
288 $customnetwork{$key}[1] = $fwhostsettings{'orgip'} ;
289 $customnetwork{$key}[2] = $fwhostsettings{'orgsub'};
290 $customnetwork{$key}[3] = $fwhostsettings{'orgnetremark'};
291 $customnetwork{$key}[4] = $fwhostsettings{'count'};
292 &General
::writehasharray
("$confignet", \
%customnetwork);
293 undef %customnetwork;
297 &General
::readhasharray
("$confignet", \
%customnetwork);
298 if ($fwhostsettings{'ACTION'} eq 'updatenet'){
299 if ($fwhostsettings{'update'} == '0'){
300 foreach my $key (keys %customnetwork) {
301 if($customnetwork{$key}[0] eq $fwhostsettings{'orgname'}){
302 $count=$customnetwork{$key}[4];
303 delete $customnetwork{$key};
309 #get count if actualize is 'on'
310 if($fwhostsettings{'actualize'} eq 'on'){
311 $fwhostsettings{'actualize'} = '';
312 $count=$fwhostsettings{'count'};
313 #check if we need to reload rules
314 if($fwhostsettings{'orgip'} ne $fwhostsettings{'IP'} && $count gt '0'){
317 if ($fwhostsettings{'orgname'} ne $fwhostsettings{'HOSTNAME'}){
318 #check if we need to update groups
319 &General
::readhasharray
("$configgrp", \
%customgrp);
320 foreach my $key (sort keys %customgrp){
321 if($customgrp{$key}[2] eq $fwhostsettings{'orgname'}){
322 $customgrp{$key}[2]=$fwhostsettings{'HOSTNAME'};
326 &General
::writehasharray
("$configgrp", \
%customgrp);
327 #check if we need to update firewallrules
328 if ( ! -z
$fwconfigfwd ){
329 &General
::readhasharray
("$fwconfigfwd", \
%fwfwd);
330 foreach my $line (sort keys %fwfwd){
331 if ($fwfwd{$line}[4] eq $fwhostsettings{'orgname'}){
332 $fwfwd{$line}[4] = $fwhostsettings{'HOSTNAME'};
334 if ($fwfwd{$line}[6] eq $fwhostsettings{'orgname'}){
335 $fwfwd{$line}[6] = $fwhostsettings{'HOSTNAME'};
338 &General
::writehasharray
("$fwconfigfwd", \
%fwfwd);
340 if ( ! -z
$fwconfiginp ){
341 &General
::readhasharray
("$fwconfiginp", \
%fwinp);
342 foreach my $line (sort keys %fwinp){
343 if ($fwfwd{$line}[4] eq $fwhostsettings{'orgname'}){
344 $fwfwd{$line}[4] = $fwhostsettings{'HOSTNAME'};
347 &General
::writehasharray
("$fwconfiginp", \
%fwinp);
351 my $key = &General
::findhasharraykey
(\
%customnetwork);
352 foreach my $i (0 .. 4) { $customnetwork{$key}[$i] = "";}
353 $fwhostsettings{'SUBNET'} = &General
::iporsubtocidr
($fwhostsettings{'SUBNET'});
354 $customnetwork{$key}[0] = $fwhostsettings{'HOSTNAME'};
355 #convert ip when leading '0' in byte
356 $fwhostsettings{'IP'} =&General
::ip2dec
($fwhostsettings{'IP'});
357 $fwhostsettings{'IP'} =&General
::dec2ip
($fwhostsettings{'IP'});
358 $customnetwork{$key}[1] = &General
::getnetworkip
($fwhostsettings{'IP'},$fwhostsettings{'SUBNET'}) ;
359 $customnetwork{$key}[2] = &General
::iporsubtodec
($fwhostsettings{'SUBNET'}) ;
360 if($fwhostsettings{'newnet'} eq 'on'){$count=0;}
361 $customnetwork{$key}[3] = $fwhostsettings{'NETREMARK'};
362 $customnetwork{$key}[4] = $count;
363 &General
::writehasharray
("$confignet", \
%customnetwork);
364 $fwhostsettings{'IP'}=$fwhostsettings{'IP'}."/".&General
::iporsubtodec
($fwhostsettings{'SUBNET'});
365 undef %customnetwork;
366 $fwhostsettings{'HOSTNAME'}='';
367 $fwhostsettings{'IP'}='';
368 $fwhostsettings{'SUBNET'}='';
369 $fwhostsettings{'NETREMARK'}='';
370 #check if an edited net affected groups and need to reload rules
371 if ($needrules eq 'on'){
383 if ($fwhostsettings{'ACTION'} eq 'savehost')
387 if ($fwhostsettings{'orgname'} eq ''){$fwhostsettings{'orgname'}=$fwhostsettings{'HOSTNAME'};}
388 $fwhostsettings{'SUBNET'}='32';
389 #check if all fields are set
390 if ($fwhostsettings{'HOSTNAME'} eq '' || $fwhostsettings{'IP'} eq '' || $fwhostsettings{'SUBNET'} eq '')
392 $errormessage=$errormessage.$Lang::tr
{'fwhost err empty'};
393 $fwhostsettings{'ACTION'} = 'edithost';
395 if($fwhostsettings{'IP'}=~/^([0-9a-fA-F]{1,2}:){5}[0-9a-fA-F]{1,2}$/){
396 $fwhostsettings{'type'} = 'mac';
397 }elsif($fwhostsettings{'IP'}=~/^(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})$/){
398 $fwhostsettings{'type'} = 'ip';
400 $fwhostsettings{'type'} = '';
401 $errormessage=$Lang::tr
{'fwhost err ipmac'};
404 if ($fwhostsettings{'HOSTREMARK'} ne '' && !&validremark
($fwhostsettings{'HOSTREMARK'})){
405 $errormessage=$Lang::tr
{'fwhost err remark'};
408 if ($fwhostsettings{'type'} eq 'ip'){
410 if (rindex($fwhostsettings{'IP'},'/') eq '-1' ){
411 if($fwhostsettings{'type'} eq 'ip' && !&General
::validipandmask
($fwhostsettings{'IP'}."/32"))
413 $errormessage.=$errormessage.$Lang::tr
{'fwhost err ip'};
414 $fwhostsettings{'error'}='on';
416 }elsif(rindex($fwhostsettings{'IP'},'/') ne '-1' ){
417 $errormessage=$errormessage.$Lang::tr
{'fwhost err ipwithsub'};
418 $fwhostsettings{'error'}='on';
420 #check if net or broadcast
421 my @tmp= split (/\./,$fwhostsettings{'IP'});
422 if (($tmp[3] eq "0") || ($tmp[3] eq "255")){
423 $errormessage=$Lang::tr
{'fwhost err hostip'};
426 #only check plausi when no error till now
428 &plausicheck
("edithost");
430 if($fwhostsettings{'actualize'} eq 'on' && $fwhostsettings{'newhost'} ne 'on' && $errormessage){
431 $fwhostsettings{'actualize'} = '';
432 my $key = &General
::findhasharraykey
(\
%customhost);
433 foreach my $i (0 .. 4) { $customhost{$key}[$i] = "";}
434 $customhost{$key}[0] = $fwhostsettings{'orgname'} ;
435 $customhost{$key}[1] = $fwhostsettings{'type'} ;
436 if($customhost{$key}[1] eq 'ip'){
437 $customhost{$key}[2] = $fwhostsettings{'orgip'}."/".&General
::iporsubtodec
($fwhostsettings{'SUBNET'});
439 $customhost{$key}[2] = $fwhostsettings{'orgip'};
441 $customhost{$key}[3] = $fwhostsettings{'orgremark'};
442 $customhost{$key}[4] = $fwhostsettings{'count'};
443 &General
::writehasharray
("$confighost", \
%customhost);
447 #get count if host was edited
448 if($fwhostsettings{'actualize'} eq 'on'){
449 $count=$fwhostsettings{'count'};
450 if($fwhostsettings{'orgip'} ne $fwhostsettings{'IP'} && $count gt '0' ){
453 if($fwhostsettings{'orgname'} ne $fwhostsettings{'HOSTNAME'}){
454 #check if we need to update groups
455 &General
::readhasharray
("$configgrp", \
%customgrp);
456 foreach my $key (sort keys %customgrp){
457 if($customgrp{$key}[2] eq $fwhostsettings{'orgname'}){
458 $customgrp{$key}[2]=$fwhostsettings{'HOSTNAME'};
461 &General
::writehasharray
("$configgrp", \
%customgrp);
462 #check if we need to update firewallrules
463 if ( ! -z
$fwconfigfwd ){
464 &General
::readhasharray
("$fwconfigfwd", \
%fwfwd);
465 foreach my $line (sort keys %fwfwd){
466 if ($fwfwd{$line}[4] eq $fwhostsettings{'orgname'}){
467 $fwfwd{$line}[4] = $fwhostsettings{'HOSTNAME'};
469 if ($fwfwd{$line}[6] eq $fwhostsettings{'orgname'}){
470 $fwfwd{$line}[6] = $fwhostsettings{'HOSTNAME'};
473 &General
::writehasharray
("$fwconfigfwd", \
%fwfwd);
475 if ( ! -z
$fwconfiginp ){
476 &General
::readhasharray
("$fwconfiginp", \
%fwinp);
477 foreach my $line (sort keys %fwinp){
478 if ($fwfwd{$line}[4] eq $fwhostsettings{'orgname'}){
479 $fwfwd{$line}[4] = $fwhostsettings{'HOSTNAME'};
482 &General
::writehasharray
("$fwconfiginp", \
%fwinp);
486 my $key = &General
::findhasharraykey
(\
%customhost);
487 foreach my $i (0 .. 4) { $customhost{$key}[$i] = "";}
488 $customhost{$key}[0] = $fwhostsettings{'HOSTNAME'} ;
489 $customhost{$key}[1] = $fwhostsettings{'type'} ;
490 if ($fwhostsettings{'type'} eq 'ip'){
491 #convert ip when leading '0' in byte
492 $fwhostsettings{'IP'}=&General
::ip2dec
($fwhostsettings{'IP'});
493 $fwhostsettings{'IP'}=&General
::dec2ip
($fwhostsettings{'IP'});
494 $customhost{$key}[2] = $fwhostsettings{'IP'}."/".&General
::iporsubtodec
($fwhostsettings{'SUBNET'});
496 $customhost{$key}[2] = $fwhostsettings{'IP'};
498 if($fwhostsettings{'newhost'} eq 'on'){$count=0;}
499 $customhost{$key}[3] = $fwhostsettings{'HOSTREMARK'};
500 $customhost{$key}[4] =$count;
501 &General
::writehasharray
("$confighost", \
%customhost);
503 $fwhostsettings{'HOSTNAME'}='';
504 $fwhostsettings{'IP'}='';
505 $fwhostsettings{'type'}='';
506 $fwhostsettings{'HOSTREMARK'}='';
507 #check if we need to update rules while host was edited
508 if($needrules eq 'on'){
519 if ($fwhostsettings{'ACTION'} eq 'savegrp')
521 my $grp=$fwhostsettings{'grp_name'};;
522 my $rem=$fwhostsettings{'remark'};
525 my $updcounter='off';
528 &General
::readhasharray
("$configgrp", \
%customgrp);
529 &General
::readhasharray
("$confignet", \
%customnetwork);
530 &General
::readhasharray
("$confighost", \
%customhost);
532 if (!&validhostname
($grp)){$errormessage.=$Lang::tr
{'fwhost err name'};}
534 if ($rem ne '' && !&validremark
($rem) && $fwhostsettings{'update'} ne 'on'){
535 $errormessage.=$Lang::tr
{'fwhost err remark'};
537 if ($fwhostsettings{'update'} eq 'on'){
538 #check standard networks
539 if ($fwhostsettings{'grp2'} eq 'std_net'){
540 @target=$fwhostsettings{'DEFAULT_SRC_ADR'};
541 $type='Standard Network';
543 #check custom networks
544 if ($fwhostsettings{'grp2'} eq 'cust_net' && $fwhostsettings{'CUST_SRC_NET'} ne ''){
545 @target=$fwhostsettings{'CUST_SRC_NET'};
547 $type='Custom Network';
548 }elsif($fwhostsettings{'grp2'} eq 'cust_net' && $fwhostsettings{'CUST_SRC_NET'} eq ''){
549 $errormessage=$Lang::tr
{'fwhost err groupempty'}."<br>";
550 $fwhostsettings{'grp_name'}='';
551 $fwhostsettings{'remark'}='';
553 #check custom addresses
554 if ($fwhostsettings{'grp2'} eq 'cust_host' && $fwhostsettings{'CUST_SRC_HOST'} ne ''){
555 @target=$fwhostsettings{'CUST_SRC_HOST'};
558 }elsif($fwhostsettings{'grp2'} eq 'cust_host' && $fwhostsettings{'CUST_SRC_HOST'} eq ''){
559 $errormessage=$Lang::tr
{'fwhost err groupempty'}."<br>";
560 $fwhostsettings{'grp_name'}='';
561 $fwhostsettings{'remark'}='';
563 #get address from ovpn ccd static net
564 if ($fwhostsettings{'grp2'} eq 'ovpn_net' && $fwhostsettings{'OVPN_CCD_NET'} ne ''){
565 @target=$fwhostsettings{'OVPN_CCD_NET'};
566 $type='OpenVPN static network';
567 }elsif($fwhostsettings{'grp2'} eq 'ovpn_net' && $fwhostsettings{'OVPN_CCD_NET'} eq ''){
568 $errormessage=$Lang::tr
{'fwhost err groupempty'};
569 $fwhostsettings{'grp_name'}='';
570 $fwhostsettings{'remark'}='';
572 #get address from ovpn ccd static host
573 if ($fwhostsettings{'grp2'} eq 'ovpn_host' && $fwhostsettings{'OVPN_CCD_HOST'} ne ''){
574 @target=$fwhostsettings{'OVPN_CCD_HOST'};
575 $type='OpenVPN static host';
576 }elsif ($fwhostsettings{'grp2'} eq 'ovpn_host' && $fwhostsettings{'OVPN_CCD_HOST'} eq ''){
577 $errormessage=$Lang::tr
{'fwhost err groupempty'};
579 #get address from ovpn ccd Net-2-Net
580 if ($fwhostsettings{'grp2'} eq 'ovpn_n2n' && $fwhostsettings{'OVPN_N2N'} ne ''){
581 @target=$fwhostsettings{'OVPN_N2N'};
582 $type='OpenVPN N-2-N';
583 }elsif ($fwhostsettings{'grp2'} eq 'ovpn_n2n' && $fwhostsettings{'OVPN_N2N'} eq ''){
584 $errormessage=$Lang::tr
{'fwhost err groupempty'};
585 $fwhostsettings{'grp_name'}='';
586 $fwhostsettings{'remark'}='';
588 #get address from IPSEC HOST
589 if ($fwhostsettings{'grp2'} eq 'ipsec_host' && $fwhostsettings{'IPSEC_HOST'} ne ''){
590 @target=$fwhostsettings{'IPSEC_HOST'};
592 }elsif ($fwhostsettings{'grp2'} eq 'ipsec_host' && $fwhostsettings{'IPSEC_HOST'} eq ''){
593 $errormessage=$Lang::tr
{'fwhost err groupempty'};
594 $fwhostsettings{'grp_name'}='';
595 $fwhostsettings{'remark'}='';
597 #get address from IPSEC NETWORK
598 if ($fwhostsettings{'grp2'} eq 'ipsec_net' && $fwhostsettings{'IPSEC_NET'} ne ''){
599 @target=$fwhostsettings{'IPSEC_NET'};
600 $type='IpSec Network';
601 }elsif ($fwhostsettings{'grp2'} eq 'ipsec_net' && $fwhostsettings{'IPSEC_NET'} eq ''){
602 $errormessage=$Lang::tr
{'fwhost err groupempty'};
603 $fwhostsettings{'grp_name'}='';
604 $fwhostsettings{'remark'}='';
606 #check if host/net exists in grp
608 my $test="$grp,$fwhostsettings{'oldremark'},@target";
609 foreach my $key (keys %customgrp) {
610 my $test1="$customgrp{$key}[0],$customgrp{$key}[1],$customgrp{$key}[2]";
611 if ($test1 eq $test){
612 $errormessage=$Lang::tr
{'fwhost err isingrp'};
613 $fwhostsettings{'update'} = 'on';
619 #on first save, we have an empty @target, so fill it with nothing
620 my $targetvalues=@target;
621 if ($targetvalues == '0'){
624 #on update, we have to delete the dummy entry
625 foreach my $key (keys %customgrp){
626 if ($customgrp{$key}[0] eq $grp && $customgrp{$key}[2] eq "none"){
627 delete $customgrp{$key};
631 &General
::writehasharray
("$configgrp", \
%customgrp);
632 &General
::readhasharray
("$configgrp", \
%customgrp);
634 foreach my $key (keys %customgrp)
636 if($customgrp{$key}[0] eq $grp)
638 $count=$customgrp{$key}[4];
642 if ($count eq '' ){$count='0';}
644 #create array with new lines
645 foreach my $line (@target){
646 push (@newgrp,"$grp,$rem,$line");
649 my $key = &General
::findhasharraykey
(\
%customgrp);
650 foreach my $line (@newgrp){
651 foreach my $i (0 .. 4) { $customgrp{$key}[$i] = "";}
652 my ($a,$b,$c,$d) = split (",",$line);
653 $customgrp{$key}[0] = $a;
654 $customgrp{$key}[1] = $b;
655 $customgrp{$key}[2] = $c;
656 $customgrp{$key}[3] = $type;
657 $customgrp{$key}[4] = $count;
659 &General
::writehasharray
("$configgrp", \
%customgrp);
660 #update counter in Host/Net
661 if($updcounter eq 'net'){
662 foreach my $key (keys %customnetwork) {
663 if($customnetwork{$key}[0] eq $fwhostsettings{'CUST_SRC_NET'}){
664 $customnetwork{$key}[4] = $customnetwork{$key}[4]+1;
668 &General
::writehasharray
("$confignet", \
%customnetwork);
669 }elsif($updcounter eq 'host'){
670 foreach my $key (keys %customhost) {
671 if ($customhost{$key}[0] eq $fwhostsettings{'CUST_SRC_HOST'}){
672 $customhost{$key}[4]=$customhost{$key}[4]+1;
675 &General
::writehasharray
("$confighost", \
%customhost);
677 $fwhostsettings{'update'}='on';
679 #check if ruleupdate is needed
687 if ($fwhostsettings{'ACTION'} eq 'saveservice')
690 &General
::readhasharray
("$configsrv", \
%customservice );
691 $errormessage=&checkports
(\
%customservice);
692 if ($fwhostsettings{'PROT'} eq 'ICMP'){
693 &General
::readhasharray
("${General::swroot}/fwhosts/icmp-types", \
%icmptypes);
694 foreach my $key (keys %icmptypes){
695 if ("$icmptypes{$key}[0] ($icmptypes{$key}[1])" eq $fwhostsettings{'ICMP_TYPES'}){
696 $ICMP=$icmptypes{$key}[0];
700 if($ICMP eq ''){$ICMP='BLANK';}
702 my $key = &General
::findhasharraykey
(\
%customservice);
703 foreach my $i (0 .. 4) { $customservice{$key}[$i] = "";}
704 $customservice{$key}[0] = $fwhostsettings{'SRV_NAME'};
705 $customservice{$key}[1] = $fwhostsettings{'SRV_PORT'};
706 $customservice{$key}[2] = $fwhostsettings{'PROT'};
707 $customservice{$key}[3] = $ICMP;
708 $customservice{$key}[4] = 0;
709 &General
::writehasharray
("$configsrv", \
%customservice );
711 $fwhostsettings{'SRV_NAME'}='';
712 $fwhostsettings{'SRV_PORT'}='';
713 $fwhostsettings{'PROT'}='';
714 $fwhostsettings{'ICMP_TYPES'}='';
718 if ($fwhostsettings{'ACTION'} eq 'saveservicegrp')
723 &General
::readhasharray
("$configsrvgrp", \
%customservicegrp );
724 &General
::readhasharray
("$configsrv", \
%customservice );
725 $errormessage=&checkservicegroup
;
727 if ($fwhostsettings{'SRVGRP_REMARK'} ne '' && !&validremark
($fwhostsettings{'SRVGRP_REMARK'})){
728 $errormessage=$Lang::tr
{'fwhost err remark'};
731 #on first save, we have to enter a dummy value
732 if ($fwhostsettings{'CUST_SRV'} eq ''){
733 $fwhostsettings{'CUST_SRV'}='none';
735 #on update, we have to delete the dummy entry
736 foreach my $key (keys %customservicegrp){
737 if ($customservicegrp{$key}[2] eq 'none'){
738 delete $customservicegrp{$key};
742 &General
::writehasharray
("$configsrvgrp", \
%customservicegrp );
743 #check if remark has also changed
744 if ($fwhostsettings{'SRVGRP_REMARK'} ne $fwhostsettings{'oldsrvgrpremark'} && $fwhostsettings{'updatesrvgrp'} eq 'on')
746 foreach my $key (keys %customservicegrp)
748 if($customservicegrp{$key}[0] eq $fwhostsettings{'SRVGRP_NAME'} && $customservicegrp{$key}[1] eq $fwhostsettings{'oldsrvgrpremark'})
750 $customservicegrp{$key}[1]='';
751 $customservicegrp{$key}[1]=$fwhostsettings{'SRVGRP_REMARK'};
756 foreach my $key (keys %customservicegrp)
758 if($customservicegrp{$key}[0] eq $fwhostsettings{'SRVGRP_NAME'})
760 $count=$customservicegrp{$key}[3];
764 if ($count eq '' ){$count='0';}
766 foreach my $key (sort keys %customservice){
767 if($customservice{$key}[0] eq $fwhostsettings{'CUST_SRV'}){
768 $port=$customservice{$key}[1];
769 $prot=$customservice{$key}[2];
770 $customservice{$key}[4]++;
773 &General
::writehasharray
("$configsrv", \
%customservice );
774 my $key = &General
::findhasharraykey
(\
%customservicegrp);
775 foreach my $i (0 .. 3) { $customservice{$key}[$i] = "";}
776 $customservicegrp{$key}[0] = $fwhostsettings{'SRVGRP_NAME'};
777 $customservicegrp{$key}[1] = $fwhostsettings{'SRVGRP_REMARK'};
778 $customservicegrp{$key}[2] = $fwhostsettings{'CUST_SRV'};
779 $customservicegrp{$key}[3] = $count;
780 &General
::writehasharray
("$configsrvgrp", \
%customservicegrp );
781 $fwhostsettings{'updatesrvgrp'}='on';
787 &viewtableservicegrp
;
790 if ($fwhostsettings{'ACTION'} eq 'editnet')
795 if ($fwhostsettings{'ACTION'} eq 'edithost')
800 if ($fwhostsettings{'ACTION'} eq 'editgrp')
802 $fwhostsettings{'update'}='on';
806 if ($fwhostsettings{'ACTION'} eq 'editservice')
808 $fwhostsettings{'updatesrv'}='on';
811 if ($fwhostsettings{'ACTION'} eq 'editservicegrp')
813 $fwhostsettings{'updatesrvgrp'} = 'on';
815 &viewtableservicegrp
;
818 if ($fwhostsettings{'ACTION'} eq 'resetnet')
820 $fwhostsettings{'HOSTNAME'} ="";
821 $fwhostsettings{'IP'} ="";
822 $fwhostsettings{'SUBNET'} ="";
825 if ($fwhostsettings{'ACTION'} eq 'resethost')
827 $fwhostsettings{'HOSTNAME'} ="";
828 $fwhostsettings{'IP'} ="";
829 $fwhostsettings{'type'} ="";
833 if ($fwhostsettings{'ACTION'} eq 'delnet')
835 &General
::readhasharray
("$confignet", \
%customnetwork);
836 foreach my $key (keys %customnetwork) {
837 if($fwhostsettings{'key'} eq $customnetwork{$key}[0]){
838 delete $customnetwork{$key};
839 &General
::writehasharray
("$confignet", \
%customnetwork);
846 if ($fwhostsettings{'ACTION'} eq 'delhost')
848 &General
::readhasharray
("$confighost", \
%customhost);
849 foreach my $key (keys %customhost) {
850 if($fwhostsettings{'key'} eq $customhost{$key}[0]){
851 delete $customhost{$key};
852 &General
::writehasharray
("$confighost", \
%customhost);
859 if ($fwhostsettings{'ACTION'} eq 'deletegrphost')
863 &General
::readhasharray
("$configgrp", \
%customgrp);
864 foreach my $key (keys %customgrp){
865 if($customgrp{$key}[0].",".$customgrp{$key}[1].",".$customgrp{$key}[2].",".$customgrp{$key}[3] eq $fwhostsettings{'delhost'}){
866 #decrease count from source host/net
867 if ($customgrp{$key}[3] eq 'Custom Network'){
868 &General
::readhasharray
("$confignet", \
%customnetwork);
869 foreach my $key1 (keys %customnetwork){
870 if ($customnetwork{$key1}[0] eq $customgrp{$key}[2]){
871 $customnetwork{$key1}[4] = $customnetwork{$key1}[4]-1;
875 &General
::writehasharray
("$confignet", \
%customnetwork);
877 if ($customgrp{$key}[3] eq 'Custom Host'){
878 &General
::readhasharray
("$confighost", \
%customhost);
879 foreach my $key1 (keys %customhost){
880 if ($customhost{$key1}[0] eq $customgrp{$key}[2]){
881 $customhost{$key1}[4] = $customhost{$key1}[4]-1;
885 &General
::writehasharray
("$confighost", \
%customhost);
887 $grpname=$customgrp{$key}[0];
888 $grpremark=$customgrp{$key}[1];
889 delete $customgrp{$key};
892 &General
::writehasharray
("$configgrp", \
%customgrp);
893 if ($fwhostsettings{'grpcnt'} > 0){&rules
;}
894 if ($fwhostsettings{'update'} eq 'on'){
895 $fwhostsettings{'remark'}= $grpremark;
896 $fwhostsettings{'grp_name'}=$grpname;
901 if ($fwhostsettings{'ACTION'} eq 'delgrp')
903 &General
::readhasharray
("$configgrp", \
%customgrp);
904 &decrease
($fwhostsettings{'grp_name'});
905 foreach my $key (sort keys %customgrp)
907 if($customgrp{$key}[0] eq $fwhostsettings{'grp_name'})
909 delete $customgrp{$key};
912 &General
::writehasharray
("$configgrp", \
%customgrp);
913 $fwhostsettings{'grp_name'}='';
917 if ($fwhostsettings{'ACTION'} eq 'delservice')
919 &General
::readhasharray
("$configsrv", \
%customservice);
920 foreach my $key (keys %customservice) {
921 if($customservice{$key}[0] eq $fwhostsettings{'SRV_NAME'}){
922 #&deletefromgrp($customhost{$key}[0],$configgrp);
923 delete $customservice{$key};
924 &General
::writehasharray
("$configsrv", \
%customservice);
928 $fwhostsettings{'SRV_NAME'}='';
929 $fwhostsettings{'SRV_PORT'}='';
930 $fwhostsettings{'PROT'}='';
933 if ($fwhostsettings{'ACTION'} eq 'delservicegrp')
935 &General
::readhasharray
("$configsrvgrp", \
%customservicegrp);
936 &decreaseservice
($fwhostsettings{'SRVGRP_NAME'});
937 foreach my $key (sort keys %customservicegrp)
939 if($customservicegrp{$key}[0] eq $fwhostsettings{'SRVGRP_NAME'})
941 delete $customservicegrp{$key};
944 &General
::writehasharray
("$configsrvgrp", \
%customservicegrp);
945 $fwhostsettings{'SRVGRP_NAME'}='';
947 &viewtableservicegrp
;
949 if ($fwhostsettings{'ACTION'} eq 'delgrpservice')
953 &General
::readhasharray
("$configsrvgrp", \
%customservicegrp);
954 &General
::readhasharray
("$configsrv", \
%customservice);
955 foreach my $key (keys %customservicegrp){
956 if($customservicegrp{$key}[0].",".$customservicegrp{$key}[1].",".$customservicegrp{$key}[2].",".$customservicegrp{$key}[3] eq $fwhostsettings{'delsrvfromgrp'})
958 #decrease count from source service
959 foreach my $key1 (sort keys %customservice){
960 if($customservice{$key1}[0] eq $customservicegrp{$key}[2]){
961 $customservice{$key1}[4]--;
965 &General
::writehasharray
("$configsrv", \
%customservice);
966 $grpname=$customservicegrp{$key}[0];
967 $grpremark=$customservicegrp{$key}[1];
968 delete $customservicegrp{$key};
971 &General
::writehasharray
("$configsrvgrp", \
%customservicegrp);
973 if ($fwhostsettings{'updatesrvgrp'} eq 'on'){
974 $fwhostsettings{'SRVGRP_NAME'}=$grpname;
975 $fwhostsettings{'SRVGRP_REMARK'}=$grpremark;
978 &viewtableservicegrp
;
981 if ($fwhostsettings{'ACTION'} eq $Lang::tr
{'fwhost newnet'})
986 if ($fwhostsettings{'ACTION'} eq $Lang::tr
{'fwhost newhost'})
991 if ($fwhostsettings{'ACTION'} eq $Lang::tr
{'fwhost newgrp'})
996 if ($fwhostsettings{'ACTION'} eq $Lang::tr
{'fwhost newservice'})
1000 if ($fwhostsettings{'ACTION'} eq $Lang::tr
{'fwhost newservicegrp'})
1003 &viewtableservicegrp
;
1005 if ($fwhostsettings{'ACTION'} eq 'changegrpremark')
1007 &General
::readhasharray
("$configgrp", \
%customgrp);
1008 if ($fwhostsettings{'oldrem'} ne $fwhostsettings{'newrem'} && (&validremark
($fwhostsettings{'newrem'}) || $fwhostsettings{'newrem'} eq '')){
1009 foreach my $key (sort keys %customgrp)
1011 if($customgrp{$key}[0] eq $fwhostsettings{'grp'} && $customgrp{$key}[1] eq $fwhostsettings{'oldrem'})
1013 $customgrp{$key}[1]='';
1014 $customgrp{$key}[1]=$fwhostsettings{'newrem'};
1017 &General
::writehasharray
("$configgrp", \
%customgrp);
1018 $fwhostsettings{'update'}='on';
1019 $fwhostsettings{'remark'}=$fwhostsettings{'newrem'};
1021 $errormessage=$Lang::tr
{'fwhost err remark'};
1022 $fwhostsettings{'remark'}=$fwhostsettings{'oldrem'};
1023 $fwhostsettings{'grp_name'}=$fwhostsettings{'grp'};
1024 $fwhostsettings{'update'} = 'on';
1026 $fwhostsettings{'grp_name'}=$fwhostsettings{'grp'};
1030 if ($fwhostsettings{'ACTION'} eq 'changesrvgrpremark')
1032 &General
::readhasharray
("$configsrvgrp", \
%customservicegrp );
1033 if ($fwhostsettings{'oldsrvrem'} ne $fwhostsettings{'newsrvrem'} && (&validremark
($fwhostsettings{'newsrvrem'}) || $fwhostsettings{'newsrvrem'} eq '')){
1034 foreach my $key (sort keys %customservicegrp)
1036 if($customservicegrp{$key}[0] eq $fwhostsettings{'srvgrp'} && $customservicegrp{$key}[1] eq $fwhostsettings{'oldsrvrem'})
1038 $customservicegrp{$key}[1]='';
1039 $customservicegrp{$key}[1]=$fwhostsettings{'newsrvrem'};
1042 &General
::writehasharray
("$configsrvgrp", \
%customservicegrp);
1043 $fwhostsettings{'updatesrvgrp'}='on';
1044 $fwhostsettings{'SRVGRP_REMARK'}=$fwhostsettings{'newsrvrem'};
1046 $errormessage=$Lang::tr
{'fwhost err remark'};
1047 $fwhostsettings{'SRVGRP_REMARK'}=$fwhostsettings{'oldsrvrem'};
1048 $fwhostsettings{'SRVGRP_NAME'}=$fwhostsettings{'srvgrp'};
1049 $fwhostsettings{'updatesrvgrp'} = 'on';
1051 $fwhostsettings{'SRVGRP_NAME'}=$fwhostsettings{'srvgrp'};
1053 &viewtableservicegrp
;
1056 if($fwhostsettings{'ACTION'} eq '')
1063 if (-f
"${General::swroot}/forward/reread"){
1064 print "<table border='0'><form method='post'><td><div style='font-size:11pt; font-weight: bold;vertical-align: middle; '><input type='submit' name='ACTION' value='$Lang::tr{'fwdfw reread'}' style='font-face: Comic Sans MS; color: red; font-weight: bold; font-size: 14pt;'>$Lang::tr{'fwhost reread'}</td></tr></table></form><hr><br>";
1066 &Header
::openbox
('100%', 'left',$Lang::tr
{'fwhost menu'});
1068 <table border='0' width='100%'><form method='post'>
1069 <tr><td><input type='submit' name='ACTION' value='$Lang::tr{'fwhost newnet'}' /><input type='submit' name='ACTION' value='$Lang::tr{'fwhost newhost'}' /><input type='submit' name='ACTION' value='$Lang::tr{'fwhost newgrp'}' /></td>
1070 <td align='right'><input type='submit' name='ACTION' value='$Lang::tr{'fwhost newservice'}' /><input type='submit' name='ACTION' value='$Lang::tr{'fwhost newservicegrp'}' /></td></tr>
1071 <tr><td colspan='6'><hr></hr></td></tr></table></form>
1073 &Header
::closebox
();
1081 &Header
::openbox
('100%', 'left', $Lang::tr
{'fwhost addnet'});
1082 $fwhostsettings{'orgname'}=$fwhostsettings{'HOSTNAME'};
1083 $fwhostsettings{'orgnetremark'}=$fwhostsettings{'NETREMARK'};
1085 <table border='0' width='100%'><form method='post' style='display:inline' >
1086 <tr><td width='15%'>$Lang::tr{'name'}:</td><td><input type='TEXT' name='HOSTNAME' id='textbox1' value='$fwhostsettings{'HOSTNAME'}' $fwhostsettings{'BLK_HOST'} size='14'><script>document.getElementById('textbox1').focus()</script></td></tr>
1087 <tr><td>$Lang::tr{'fwhost netaddress'}:</td><td><input type='TEXT' name='IP' value='$fwhostsettings{'IP'}' $fwhostsettings{'BLK_IP'} size='14' maxlength='15'></td></tr>
1088 <tr><td>$Lang::tr{'netmask'}:</td><td><input type='TEXT' name='SUBNET' value='$fwhostsettings{'SUBNET'}' $fwhostsettings{'BLK_IP'} size='14' maxlength='15'></td></tr>
1089 <tr><td>$Lang::tr{'remark'}:</td><td><input type='TEXT' name='NETREMARK' value='$fwhostsettings{'NETREMARK'}' style='width: 98.5%;'></td></tr>
1090 <tr><td colspan='6'><br><hr></hr></td></tr><tr>
1092 if ($fwhostsettings{'ACTION'} eq 'editnet' || $fwhostsettings{'error'} eq 'on')
1094 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'}'>";
1096 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'>";
1098 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'></td></tr></table></form>";
1099 &Header
::closebox
();
1105 &Header
::openbox
('100%', 'left', $Lang::tr
{'fwhost addhost'});
1106 $fwhostsettings{'orgname'}=$fwhostsettings{'HOSTNAME'};
1107 $fwhostsettings{'orgremark'}=$fwhostsettings{'HOSTREMARK'};
1109 <table border='0' width='100%'><form method='post' style='display:inline'>
1110 <tr><td>$Lang::tr{'name'}:</td><td><input type='TEXT' name='HOSTNAME' id='textbox1' value='$fwhostsettings{'HOSTNAME'}' $fwhostsettings{'BLK_HOST'} size='14'><script>document.getElementById('textbox1').focus()</script></td></tr>
1111 <tr><td>IP/MAC:</td><td><input type='TEXT' name='IP' value='$fwhostsettings{'IP'}' $fwhostsettings{'BLK_IP'} size='14' maxlength='17'></td></tr>
1112 <tr><td width='10%'>$Lang::tr{'remark'}:</td><td><input type='TEXT' name='HOSTREMARK' value='$fwhostsettings{'HOSTREMARK'}' style='width:98%;'></td></tr>
1113 <tr><td colspan='5'><br><br><b>$Lang::tr{'fwhost attention'}</b><br>$Lang::tr{'fwhost macwarn'}</td></tr>
1114 <tr><td colspan='5'><hr></hr></td></tr>
1117 if ($fwhostsettings{'ACTION'} eq 'edithost' || $fwhostsettings{'error'} eq 'on')
1120 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>";
1122 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'>";
1124 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'></td></tr></table></form>";
1125 &Header
::closebox
();
1132 &Header
::openbox
('100%', 'left', $Lang::tr
{'fwhost addgrp'});
1133 &General
::setup_default_networks
(\
%defaultNetworks);
1134 &General
::readhasharray
("$configccdnet", \
%ccdnet);
1135 &General
::readhasharray
("$confignet", \
%customnetwork);
1136 &General
::readhasharray
("$configccdhost", \
%ccdhost);
1137 &General
::readhasharray
("$confighost", \
%customhost);
1138 &General
::readhasharray
("$configipsec", \
%ipsecconf);
1142 $checked{'check1'}{'off'} = '';
1143 $checked{'check1'}{'on'} = '';
1144 $checked{'grp2'}{$fwhostsettings{'grp2'}} = 'CHECKED';
1145 $fwhostsettings{'oldremark'}=$fwhostsettings{'remark'};
1146 my $grp=$fwhostsettings{'grp_name'};
1147 my $rem=$fwhostsettings{'remark'};
1148 if ($fwhostsettings{'update'} eq ''){
1150 <table width='100%' border='0'><form method='post'>
1151 <tr><td width='10%'>$Lang::tr{'fwhost addgrpname'}</td><td><input type='TEXT' name='grp_name' value='$fwhostsettings{'grp_name'}' size='14'></td></tr>
1152 <tr><td width='10%'>$Lang::tr{'remark'}:</td><td ><input type='TEXT' name='remark' value='$fwhostsettings{'remark'}' style='width: 98%;'></td></tr>
1153 <tr><td colspan='2'><br><hr></td></tr></table>
1157 <table width='100%' border='0'><form method='post' style='display:inline'>
1158 <tr><td nowrap='nowrap' width='12%'>$Lang::tr{'fwhost addgrpname'}</td><td><input type='TEXT' name='grp' value='$fwhostsettings{'grp_name'}' readonly ></td><td></td></tr>
1159 <tr><td>$Lang::tr{'remark'}:</td><td><input type='TEXT' name='newrem' size='45' value='$fwhostsettings{'remark'}' style='width:98%'></td><td align='right'><input type='submit' value='$Lang::tr{'fwhost change'}'><input type='hidden' name='oldrem' value='$fwhostsettings{'oldremark'}'><input type='hidden' name='ACTION' value='changegrpremark' ></td></tr></table></form>
1163 if ($fwhostsettings{'update'} eq 'on'){
1165 <form method='post'><input type='hidden' name='remark' value='$rem'><input type='hidden' name='grp_name' value='$grp'>
1166 <table width='100%' border='0'>
1167 <tr><td width=50% valign='top'>
1168 <table width='100%' border='0'>
1169 <tr><td width='1%'><input type='radio' name='grp2' value='std_net' checked></td><td nowrap='nowrap' width='16%'>$Lang::tr{'fwhost stdnet'}</td><td><select name='DEFAULT_SRC_ADR' style='min-width:185px;'>
1171 foreach my $network (sort keys %defaultNetworks)
1173 next if($defaultNetworks{$network}{'LOCATION'} eq "IPCOP");
1174 next if($defaultNetworks{$network}{'NAME'} eq "RED");
1175 print "<option value='$defaultNetworks{$network}{'NAME'}'";
1176 print " selected='selected'" if ($fwhostsettings{'DEFAULT_SRC_ADR'} eq $defaultNetworks{$network}{'NAME'});
1177 print ">$network</option>";
1179 print"</select></td></tr>";
1180 if (! -z
$confignet){
1181 print"<tr><td><input type='radio' name='grp2' value='cust_net' $checked{'grp2'}{'cust_net'}></td><td>$Lang::tr{'fwhost cust net'}</td><td><select name='CUST_SRC_NET' style='min-width:185px;'>";
1182 foreach my $key (sort { ncmp
($customnetwork{$a}[0],$customnetwork{$b}[0]) } keys %customnetwork) {
1183 print"<option>$customnetwork{$key}[0]</option>";
1185 print"</select></td></tr>";
1187 if (! -z
$confighost){
1188 print"<tr><td valign='top'><input type='radio' name='grp2' value='cust_host' $checked{'grp2'}{'cust_host'}></td><td valign='top'>$Lang::tr{'fwhost cust addr'}</td><td><select name='CUST_SRC_HOST' style='min-width:185px;'>";
1189 foreach my $key (sort { ncmp
($customhost{$a}[0],$customhost{$b}[0]) } keys %customhost) {
1190 print"<option>$customhost{$key}[0]</option>";
1192 print"</select></td></tr>";
1196 print"</td><td valign='top'><table width='100%' border='0'>";
1198 if (! -z
$configccdnet){
1199 print"<td width='1%'><input type='radio' name='grp2' value='ovpn_net' $checked{'grp2'}{'ovpn_net'}></td><td nowrap='nowrap' width='16%'>$Lang::tr{'fwhost ccdnet'}</td><td nowrap='nowrap' width='1%'><select name='OVPN_CCD_NET' style='min-width:185px;'>";
1200 foreach my $key (sort { ncmp
($ccdnet{$a}[0],$ccdnet{$b}[0]) } keys %ccdnet)
1202 print"<option value='$ccdnet{$key}[0]'>$ccdnet{$key}[0]</option>";
1204 print"</select></td></tr>";
1207 foreach my $key (sort { ncmp
($ccdhost{$a}[0],$ccdhost{$b}[0]) } keys %ccdhost)
1209 if ($ccdhost{$key}[33] ne ''){
1210 print"<td width='1%'><input type='radio' name='grp2' value='ovpn_host' $checked{'grp2'}{'ovpn_host'}></td><td nowrap='nowrap' width='16%'>$Lang::tr{'fwhost ccdhost'}</td><td nowrap='nowrap' width='1%'><select name='OVPN_CCD_HOST' style='min-width:185px;'>" if ($show eq '');
1212 print"<option value='$ccdhost{$key}[1]'>$ccdhost{$key}[1]</option>";
1215 if ($show eq '1'){$show='';print"</select></td></tr>";}
1217 foreach my $key (sort { ncmp
($ccdhost{$a}[1],$ccdhost{$b}[1]) } keys %ccdhost) {
1218 if($ccdhost{$key}[3] eq 'net'){
1219 print"<td width='1%'><input type='radio' name='grp2' value='ovpn_n2n' $checked{'grp2'}{'ovpn_n2n'}></td><td valign='top'>$Lang::tr{'fwhost ovpn_n2n'}</td><td colspan='3'><select name='OVPN_N2N' style='min-width:185px;'>" if ($show eq '');
1221 print"<option>$ccdhost{$key}[1]</option>";
1224 if ($show eq '1'){$show='';print"</select></td></tr>";}
1226 foreach my $key (sort { ncmp
($ipsecconf{$a}[0],$ipsecconf{$b}[0]) } keys %ipsecconf) {
1227 if ($ipsecconf{$key}[3] eq 'net'){
1228 print"<td valign='top'><input type='radio' name='grp2' value='ipsec_net' $checked{'grp2'}{'ipsec_net'}></td><td valign='top'>$Lang::tr{'fwhost ipsec net'}</td><td><select name='IPSEC_NET' style='min-width:185px;'>" if ($show eq '');
1230 print"<option value='$ipsecconf{$key}[1]'>$ipsecconf{$key}[1]</option>";
1233 if ($show eq '1'){$show='';print"</select></td></tr>";}
1235 print"</td></tr></table>";
1236 print"<br><br><b>$Lang::tr{'fwhost attention'}:</b><br> $Lang::tr{'fwhost macwarn'}<br><hr>";
1238 print"<table border='0' width='100%'>";
1239 print"<tr><td 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'reset'></td></td></table></form>";
1240 &Header
::closebox
();
1246 &Header
::openbox
('100%', 'left', $Lang::tr
{'fwhost newservice'});
1247 if ($fwhostsettings{'updatesrv'} eq 'on')
1249 $fwhostsettings{'oldsrvname'} = $fwhostsettings{'SRV_NAME'};
1250 $fwhostsettings{'oldsrvport'} = $fwhostsettings{'SRV_PORT'};
1251 $fwhostsettings{'oldsrvprot'} = $fwhostsettings{'PROT'};
1254 <table width='100%' border='0'><form method='post'>
1255 <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='14'><script>document.getElementById('textbox1').focus()</script></td></tr>
1256 <tr><td width='10%' nowrap='nowrap'>$Lang::tr{'fwhost prot'}:</td><td><select name='PROT'>
1258 foreach ("TCP","UDP","ICMP")
1260 if ($_ eq $fwhostsettings{'PROT'})
1262 print"<option selected>$_</option>";
1264 print"<option>$_</option>";
1269 <tr><td width='10%' nowrap='nowrap'>$Lang::tr{'fwhost icmptype'}</td><td><select name='ICMP_TYPES'>
1271 &General
::readhasharray
("${General::swroot}/fwhosts/icmp-types", \
%icmptypes);
1272 print"<option>All ICMP-Types</option>";
1273 foreach my $key (sort { ncmp
($icmptypes{$a}[0],$icmptypes{$b}[0]) }keys %icmptypes){
1274 print"<option>$icmptypes{$key}[0] ($icmptypes{$key}[1])</option>";
1279 <tr><td width='10%'>$Lang::tr{'fwhost port'}:</td><td><input type='text' name='SRV_PORT' value='$fwhostsettings{'SRV_PORT'}' maxlength='11' size='14'></td></tr>
1280 <tr><td colspan='6'><br><hr></td></tr>
1281 <tr><td colspan='6' align='right'>
1283 if ($fwhostsettings{'updatesrv'} eq 'on')
1286 <input type='submit' value='$Lang::tr{'update'}'style='min-width:100px;' >
1287 <input type='hidden' name='ACTION' value='updateservice'>
1288 <input type='hidden' name='oldsrvname' value='$fwhostsettings{'oldsrvname'}'>
1289 <input type='hidden' name='oldsrvport' value='$fwhostsettings{'oldsrvport'}'>
1290 <input type='hidden' name='oldsrvprot' value='$fwhostsettings{'oldsrvprot'}'></form>
1294 print"<input type='submit' value='$Lang::tr{'save'}' style='min-width:100px;'><input type='hidden' name='ACTION' value='saveservice'></form>";
1297 <form style='display:inline;' method='post'><input type='submit' value='$Lang::tr{'fwhost back'}' style='min-width:100px;'></form></td></tr>
1302 &Header
::closebox
();
1310 &Header
::openbox
('100%', 'left', $Lang::tr
{'fwhost newservicegrp'});
1311 $fwhostsettings{'oldsrvgrpremark'}=$fwhostsettings{'SRVGRP_REMARK'};
1312 if ($fwhostsettings{'updatesrvgrp'} eq ''){
1314 <table width='100%' border='0'><form method='post'>
1315 <tr><td width='10%'>$Lang::tr{'fwhost addgrpname'}</td><td><input type='text' name='SRVGRP_NAME' value='$fwhostsettings{'SRVGRP_NAME'}' size='14'></td></tr>
1316 <tr><td width='10%'>$Lang::tr{'remark'}:</td><td><input type='text' name='SRVGRP_REMARK' value='$fwhostsettings{'SRVGRP_REMARK'}' style='width: 98%;'></td></tr>
1317 <tr><td colspan='2'><br><hr></tr>
1322 <table width='100%' border='0'><form method='post' style='display:inline'>
1323 <tr><td width='10%'>$Lang::tr{'fwhost addgrpname'}</td><td><input type='text' name='srvgrp' value='$fwhostsettings{'SRVGRP_NAME'}' readonly size='14'></td><td width='3%'></td></tr>
1324 <tr><td width='10%'>$Lang::tr{'remark'}:</td><td><input type='text' name='newsrvrem' value='$fwhostsettings{'SRVGRP_REMARK'}' style='width:98%;'></td><td align='right'><input type='submit' value='$Lang::tr{'fwhost change'}'><input type='hidden' name='oldsrvrem' value='$fwhostsettings{'oldsrvgrpremark'}'><input type='hidden' name='ACTION' value='changesrvgrpremark' ></td></tr>
1325 <tr><td colspan='3'><br><hr></td></td></tr>
1329 if($fwhostsettings{'updatesrvgrp'} eq 'on'){
1331 <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%'>
1332 <tr><td width='1%' nowrap='nowrap'>$Lang::tr{'fwhost cust service'}</td><td><select name='CUST_SRV' style='min-width:185px;'>
1334 &General
::readhasharray
("$configsrv", \
%customservice);
1335 foreach my $key (sort { ncmp
($customservice{$a}[0],$customservice{$b}[0]) } keys %customservice)
1337 print "<option>$customservice{$key}[0]</option>";
1341 <tr><td colspan='4'><br><br></td></tr>
1342 <tr><td colspan='4'><hr></td></tr>
1347 <table width='100%' border='0'>
1348 <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>
1351 &Header
::closebox
();
1356 if(! -z
$confignet){
1357 &Header
::openbox
('100%', 'left', $Lang::tr
{'fwhost cust net'});
1358 &General
::readhasharray
("$confignet", \
%customnetwork);
1359 if (!keys %customnetwork)
1361 print "<center><b>$Lang::tr{'fwhost empty'}</b>";
1364 <table border='0' width='100%' cellspacing='0'>
1365 <tr><td align='center'><b>$Lang::tr{'name'}</td><td align='center'><b>$Lang::tr{'fwhost netaddress'}</td><td align='center'><b>$Lang::tr{'netmask'}</td><td align='center'><b>$Lang::tr{'remark'}</td><td align='center'><b>$Lang::tr{'used'}</td><td></td><td width='3%'></td></tr>
1369 foreach my $key (sort {ncmp
($a,$b)} keys %customnetwork) {
1370 if ($fwhostsettings{'ACTION'} eq 'editnet' && $fwhostsettings{'HOSTNAME'} eq $customnetwork{$key}[0]) {
1371 print" <tr bgcolor='${Header::colouryellow}'>";
1374 print" <tr bgcolor='$color{'color22'}'>";
1377 print" <tr bgcolor='$color{'color20'}'>";
1380 <td width='20%'><form method='post'>$customnetwork{$key}[0]</td><td width=15%' align='center'>$customnetwork{$key}[1]</td><td width='15%' align='center'>$customnetwork{$key}[2]</td><td width='40%'>$customnetwork{$key}[3]</td><td align='center'>$customnetwork{$key}[4]x</td>
1381 <td width='1%'><input type='image' src='/images/edit.gif' align='middle' alt=$Lang::tr{'edit'} title=$Lang::tr{'edit'} />
1382 <input type='hidden' name='ACTION' value='editnet'>
1383 <input type='hidden' name='HOSTNAME' value='$customnetwork{$key}[0]' />
1384 <input type='hidden' name='IP' value='$customnetwork{$key}[1]' />
1385 <input type='hidden' name='SUBNET' value='$customnetwork{$key}[2]' />
1386 <input type='hidden' name='NETREMARK' value='$customnetwork{$key}[3]' />
1389 if($customnetwork{$key}[4] == '0')
1391 print"<td width='1%'><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>";
1393 print"<td></td></form></tr>";
1398 &Header
::closebox
();
1404 if (! -z
$confighost){
1405 &Header
::openbox
('100%', 'left', $Lang::tr
{'fwhost cust addr'});
1406 &General
::readhasharray
("$confighost", \
%customhost);
1407 if (!keys %customhost)
1409 print "<center><b>$Lang::tr{'fwhost empty'}</b>";
1412 <table border='0' width='100%' cellspacing='0'>
1413 <tr><td align='center'><b>$Lang::tr{'name'}</td><td align='center'><b>$Lang::tr{'fwhost ip_mac'}</td><td align='center'><b>$Lang::tr{'remark'}</td><td align='center'><b>$Lang::tr{'used'}</td><td></td><td width='3%'></td></tr>
1417 foreach my $key (sort { ncmp
($customhost{$a}[0],$customhost{$b}[0])} keys %customhost) {
1418 if ( ($fwhostsettings{'ACTION'} eq 'edithost' || $fwhostsettings{'error'}) && $fwhostsettings{'HOSTNAME'} eq $customhost{$key}[0]) {
1419 print" <tr bgcolor='${Header::colouryellow}'>";
1420 }elsif ($count % 2){ print" <tr bgcolor='$color{'color22'}'>";}
1421 else{ print" <tr bgcolor='$color{'color20'}'>";}
1422 my ($ip,$sub)=split(/\//,$customhost{$key}[2]);
1423 $customhost{$key}[4]=~s/\s+//g;
1425 <td width='20%'><form method='post'>$customhost{$key}[0]</td><td width='20%' align='center'>$ip</td><td width='50%' align='left'>$customhost{$key}[3]</td><td align='center'>$customhost{$key}[4]x</td>
1426 <td width='1%'><input type='image' src='/images/edit.gif' align='middle' alt=$Lang::tr{'edit'} title=$Lang::tr{'edit'} />
1427 <input type='hidden' name='ACTION' value='edithost' />
1428 <input type='hidden' name='HOSTNAME' value='$customhost{$key}[0]' />
1429 <input type='hidden' name='IP' value='$ip' />
1430 <input type='hidden' name='type' value='$customhost{$key}[1]' />
1431 <input type='hidden' name='HOSTREMARK' value='$customhost{$key}[3]' />
1434 if($customhost{$key}[4] == '0')
1436 print"<td width='1%'><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>";
1438 print"<td width='1%'></td></tr>";
1443 &Header
::closebox
();
1448 if(! -z
"$configgrp"){
1449 &Header
::openbox
('100%', 'left', $Lang::tr
{'fwhost cust grp'});
1450 &General
::readhasharray
("$configgrp", \
%customgrp);
1451 &General
::readhasharray
("$configipsec", \
%ipsecconf);
1452 &General
::readhasharray
("$configccdhost", \
%ccdhost);
1453 &General
::readhasharray
("$configccdnet", \
%ccdnet);
1454 &General
::readhasharray
("$confighost", \
%customhost);
1455 &General
::readhasharray
("$confignet", \
%customnetwork);
1463 if (!keys %customgrp)
1465 print "<center><b>$Lang::tr{'fwhost empty'}</b>";
1467 foreach my $key (sort { ncmp
($customgrp{$a}[0],$customgrp{$b}[0]) } sort { ncmp
($customgrp{$a}[2],$customgrp{$b}[2]) } keys %customgrp){
1469 if ($helper ne $customgrp{$key}[0]){
1471 foreach my $key1 (sort { ncmp
($customgrp{$a}[0],$customgrp{$b}[0]) } sort { ncmp
($customgrp{$a}[2],$customgrp{$b}[2]) } keys %customgrp){
1472 if ($customgrp{$key}[0] eq $customgrp{$key1}[0])
1481 if ($customgrp{$key}[2] eq "none"){$customgrp{$key}[2]=$Lang::tr
{'fwhost empty'};}
1482 $grpname=$customgrp{$key}[0];
1483 $remark="$customgrp{$key}[1]";
1484 if($count >=2){print"</table>";}
1485 print "<br><b><u>$grpname</u></b>    ";
1486 print " <b>$Lang::tr{'remark'}:</b>  $remark   " if ($remark ne '');
1487 print "<b>$Lang::tr{'used'}:</b> $customgrp{$key}[4]x";
1488 if($customgrp{$key}[4] == '0')
1490 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>";
1492 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>";
1493 print"<table width='100%' style='border: 1px solid #CCCCCC;' rules='none' cellspacing='0'><tr><td align='center'><b>Name</b></td><td align='center'><b>$Lang::tr{'ip address'}</b></td><td align='center' width='25%'><b>$Lang::tr{'fwhost type'}</td><td></td></tr>";
1496 if ( ($fwhostsettings{'ACTION'} eq 'editgrp' || $fwhostsettings{'update'} ne '') && $fwhostsettings{'grp_name'} eq $customgrp{$key}[0]) {
1497 print" <tr bgcolor='${Header::colouryellow}'>";
1498 }elsif ($count %2 == 0){
1499 print"<tr bgcolor='$color{'color22'}'>";
1501 print"<tr bgcolor='$color{'color20'}'>";
1503 my $ip=&getipforgroup
($customgrp{$key}[2],$customgrp{$key}[3]);
1504 if ($ip eq ''){print"<tr bgcolor='${Header::colouryellow}'>";}
1505 print "<td width='39%' align='left'>";
1506 if($customgrp{$key}[3] eq 'Standard Network'){
1507 print &get_name
($customgrp{$key}[2])."</td>";
1509 print "$customgrp{$key}[2]</td>";
1511 if ($ip eq '' && $customgrp{$key}[2] ne $Lang::tr
{'fwhost empty'}){
1512 print "<td align='center'>$Lang::tr{'fwhost deleted'}</td><td align='center'>$customgrp{$key}[3]</td><td width='1%'><form method='post'>";
1514 print"<td align='center'>$ip</td><td align='center'>$customgrp{$key}[3]</td><td width='1%'><form method='post'>";
1516 if ($delflag > '1' && $ip ne ''){
1517 print"<input type='image' src='/images/delete.gif' align='middle' alt=$Lang::tr{'delete'} title=$Lang::tr{'delete'} />";
1519 print"<input type='hidden' name='ACTION' value='deletegrphost'><input type='hidden' name='grpcnt' value='$customgrp{$key}[4]'><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>";
1521 $helper=$customgrp{$key}[0];
1527 &Header
::closebox
();
1531 sub viewtableservice
1534 if(! -z
"$configsrv")
1536 &Header
::openbox
('100%', 'left', $Lang::tr
{'fwhost services'});
1537 &General
::readhasharray
("$configsrv", \
%customservice);
1539 <table width='100%' border='0' cellspacing='0'>
1540 <tr><td align='center'><b>$Lang::tr{'fwhost srv_name'}</td><td align='center'><b>$Lang::tr{'fwhost prot'}</td><td align='center'><b>$Lang::tr{'fwhost port'}</td><td align='center'><b>ICMP</td><td align='center'><b>$Lang::tr{'fwhost used'}</td><td></td><td width='3%'></td></tr>
1542 foreach my $key (sort { ncmp
($customservice{$a}[0],$customservice{$b}[0])} keys %customservice)
1545 if ( ($fwhostsettings{'updatesrv'} eq 'on' || $fwhostsettings{'error'}) && $fwhostsettings{'SRV_NAME'} eq $customservice{$key}[0]) {
1546 print" <tr bgcolor='${Header::colouryellow}'>";
1547 }elsif ($count % 2){ print" <tr bgcolor='$color{'color22'}'>";}else{ print" <tr bgcolor='$color{'color20'}'>";}
1549 <td>$customservice{$key}[0]</td><td align='center'>$customservice{$key}[2]</td><td align='center'>$customservice{$key}[1]</td><td align='center'>
1551 if($customservice{$key}[3] ne 'BLANK'){print $customservice{$key}[3];}
1554 </td><td align='center'>$customservice{$key}[4]x</td>
1555 <td width='1%'><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' />
1556 <input type='hidden' name='SRV_NAME' value='$customservice{$key}[0]' />
1557 <input type='hidden' name='SRV_PORT' value='$customservice{$key}[1]' />
1558 <input type='hidden' name='PROT' value='$customservice{$key}[2]' /></form></td>
1560 if ($customservice{$key}[4] eq '0')
1562 print"<td width='1%'><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>";
1564 print"<td></td></tr>";
1568 &Header
::closebox
();
1571 sub viewtableservicegrp
1580 if (! -z
$configsrvgrp){
1581 &Header
::openbox
('100%', 'left', $Lang::tr
{'fwhost cust srvgrp'});
1582 &General
::readhasharray
("$configsrvgrp", \
%customservicegrp);
1583 &General
::readhasharray
("$configsrv", \
%customservice);
1584 my $number= keys %customservicegrp;
1585 foreach my $key (sort { ncmp
($customservicegrp{$a}[0],$customservicegrp{$b}[0]) } keys %customservicegrp){
1587 if ($helper ne $customservicegrp{$key}[0]){
1589 foreach my $key1 (sort { ncmp
($customservicegrp{$a}[0],$customservicegrp{$b}[0]) } sort { ncmp
($customservicegrp{$a}[2],$customservicegrp{$b}[2]) } keys %customservicegrp){
1590 if ($customservicegrp{$key}[0] eq $customservicegrp{$key1}[0])
1598 $grpname=$customservicegrp{$key}[0];
1599 if ($customservicegrp{$key}[2] eq "none"){
1600 $customservicegrp{$key}[2]=$Lang::tr
{'fwhost empty'};
1604 $remark="$customservicegrp{$key}[1]";
1605 if($count >=2){print"</table>";}
1606 print "<br><b><u>$grpname</u></b>     ";
1607 print "<b>$Lang::tr{'remark'}:</b>  $remark " if ($remark ne '');
1608 print "  <b>$Lang::tr{'used'}:</b> $customservicegrp{$key}[3]x";
1609 if($customservicegrp{$key}[3] == '0')
1611 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>";
1613 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>";
1614 print"<table width='100%' style='border: 1px solid #CCCCCC;' rules='none' cellspacing='0'><tr><td align='center'><b>Name</b></td><td align='center'><b>$Lang::tr{'port'}</b></td><td align='center' width='25%'><b>$Lang::tr{'fwhost prot'}</td><td></td></tr>";
1616 if( $fwhostsettings{'SRVGRP_NAME'} eq $customservicegrp{$key}[0]) {
1617 print" <tr bgcolor='${Header::colouryellow}'>";
1618 }elsif ($count %2 == 0){
1619 print"<tr bgcolor='$color{'color22'}'>";
1621 print"<tr bgcolor='$color{'color20'}'>";
1623 print "<td width='39%'>$customservicegrp{$key}[2]</td>";
1624 foreach my $srv (sort keys %customservice){
1625 if ($customservicegrp{$key}[2] eq $customservice{$srv}[0]){
1626 $protocol=$customservice{$srv}[2];
1627 $port=$customservice{$srv}[1];
1631 print"<td align='center'>$port</td><td align='center'>$protocol</td><td width='1%'><form method='post'>";
1632 if ($number gt '1'){
1633 print"<input type='image' src='/images/delete.gif' align='middle' alt=$Lang::tr{'delete'} title=$Lang::tr{'delete'} />";
1635 print"<input type='hidden' name='ACTION' value='delgrpservice'><input type='hidden' name='updatesrvgrp' value='$fwhostsettings{'updatesrvgrp'}'><input type='hidden' name='delsrvfromgrp' value='$grpname,$remark,$customservicegrp{$key}[2],$customservicegrp{$key}[3]'></form></td></tr>";
1636 $helper=$customservicegrp{$key}[0];
1639 &Header
::closebox
();
1645 my %hash=%{(shift)};
1646 foreach my $key (keys %hash) {
1647 if($hash{$key}[0] eq $fwhostsettings{'HOSTNAME'}){
1657 my %hash=%{(shift)};
1659 foreach my $key (keys %hash) {
1660 if($hash{$key}[$a] eq $fwhostsettings{'IP'}."/".&General
::iporsubtodec
($fwhostsettings{'SUBNET'})){
1669 my %hash=%{(shift)};
1670 &General
::readhasharray
("$confignet", \
%hash);
1671 foreach my $key (keys %hash) {
1672 if(&General
::IpInSubnet
($fwhostsettings{'IP'},$hash{$key}[1],$hash{$key}[2]))
1679 sub checkservicegroup
1681 &General
::readhasharray
("$configsrvgrp", \
%customservicegrp);
1685 if ( ! &validhostname
($fwhostsettings{'SRVGRP_NAME'}))
1687 $errormessage.=$Lang::tr
{'fwhost err name'}."<br>";
1688 return $errormessage;
1690 #check empty selectbox
1691 if (keys %customservice lt 1)
1693 $errormessage.=$Lang::tr
{'fwhost err groupempty'}."<br>";
1695 #check if name already exists
1696 if ($fwhostsettings{'updatesrvgrp'} ne 'on'){
1697 foreach my $key (keys %customservicegrp) {
1698 if( $customservicegrp{$key}[0] eq $fwhostsettings{'SRVGRP_NAME'} ){
1699 $errormessage.=$Lang::tr
{'fwhost err grpexist'}."<br>";
1704 #check if service already exists in group
1705 foreach my $key (keys %customservicegrp) {
1706 if($customservicegrp{$key}[0] eq $fwhostsettings{'SRVGRP_NAME'} && $customservicegrp{$key}[2] eq $fwhostsettings{'CUST_SRV'} ){
1707 $errormessage.=$Lang::tr
{'fwhost err srvexist'}."<br>";
1710 return $errormessage;
1714 if ($errormessage) {
1715 &Header
::openbox
('100%', 'left', $Lang::tr
{'error messages'});
1716 print "<class name='base'>$errormessage\n";
1717 print " </class>\n";
1718 &Header
::closebox
();
1724 &Header
::openbox
('100%', 'left', $Lang::tr
{'fwhost hint'});
1725 print "<class name='base'>$hint\n";
1726 print " </class>\n";
1727 &Header
::closebox
();
1733 &General
::setup_default_networks
(\
%defaultNetworks);
1734 foreach my $network (sort keys %defaultNetworks)
1736 return "$network" if ($val eq $defaultNetworks{$network}{'NAME'});
1744 &General
::readhasharray
("$config",\
%hash);
1745 foreach my $key (keys %hash) {
1746 $errormessage.="lese $hash{$key}[2] und $target<br>";
1747 if($hash{$key}[2] eq $target){
1750 $errormessage.="Habe $target aus Gruppe gelöscht!<br>";
1753 &General
::writehasharray
("$config",\
%hash);
1760 if (!&validhostname
($fwhostsettings{'HOSTNAME'}))
1762 $errormessage=$errormessage.$Lang::tr
{'fwhost err name'};
1763 $fwhostsettings{'BLK_IP'}='readonly';
1764 $fwhostsettings{'HOSTNAME'} = $fwhostsettings{'orgname'};
1765 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;}
1767 #check if name collides with CCD Netname
1768 &General
::readhasharray
("$configccdnet", \
%ccdnet);
1769 foreach my $key (keys %ccdnet) {
1770 if($ccdnet{$key}[0] eq $fwhostsettings{'HOSTNAME'}){
1771 $errormessage=$errormessage.$Lang::tr
{'fwhost err isccdnet'};;
1772 $fwhostsettings{'HOSTNAME'} = $fwhostsettings{'orgname'};
1773 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;}
1777 #check if IP collides with CCD NetIP
1778 if ($fwhostsettings{'type'} ne 'mac'){
1779 &General
::readhasharray
("$configccdnet", \
%ccdnet);
1780 foreach my $key (keys %ccdnet) {
1781 my $test=(&General
::getnetworkip
($fwhostsettings{'IP'},&General
::iporsubtocidr
($fwhostsettings{'SUBNET'})))."/".$fwhostsettings{'SUBNET'};
1782 if($ccdnet{$key}[1] eq $test){
1783 $errormessage=$errormessage.$Lang::tr
{'fwhost err isccdipnet'};
1784 $fwhostsettings{'IP'} = $fwhostsettings{'orgip'};
1785 $fwhostsettings{'SUBNET'} = $fwhostsettings{'orgsubnet'};
1786 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;}
1791 #check if name collides with CCD Hostname
1792 &General
::readhasharray
("$configccdhost", \
%ccdhost);
1793 foreach my $key (keys %ccdhost) {
1794 my ($ip,$sub)=split(/\//,$ccdhost{$key}[33]);
1795 if($ip eq $fwhostsettings{'IP'}){
1796 $errormessage=$Lang::tr
{'fwhost err isccdiphost'};
1797 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;}
1801 #check if IP collides with CCD HostIP (only hosts)
1802 if ($edit eq 'edithost')
1804 foreach my $key (keys %ccdhost) {
1805 if($ccdhost{$key}[1] eq $fwhostsettings{'HOSTNAME'}){
1806 $errormessage=$Lang::tr
{'fwhost err isccdhost'};
1807 $fwhostsettings{'IP'} = $fwhostsettings{'orgname'};
1808 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;}
1813 #check if network with this name already exists
1814 &General
::readhasharray
("$confignet", \
%customnetwork);
1815 if (!&checkname
(\
%customnetwork))
1817 $errormessage=$errormessage."<br>".$Lang::tr
{'fwhost err netexist'};
1818 $fwhostsettings{'HOSTNAME'} = $fwhostsettings{'orgname'};
1819 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;}
1821 #check if network ip already exists
1822 if (!&checkip
(\
%customnetwork,1))
1824 $errormessage=$errormessage."<br>".$Lang::tr
{'fwhost err net'};
1825 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;}
1827 #check if host with this name already exists
1828 &General
::readhasharray
("$confighost", \
%customhost);
1829 if (!&checkname
(\
%customhost))
1831 $errormessage.="<br>".$Lang::tr
{'fwhost err hostexist'};
1832 $fwhostsettings{'HOSTNAME'} = $fwhostsettings{'orgname'};
1833 if ($fwhostsettings{'update'} eq 'on'){$fwhostsettings{'ACTION'}=$edit;}
1835 #check if host with this ip already exists
1836 if (!&checkip
(\
%customhost,2))
1838 $errormessage=$errormessage."<br>".$Lang::tr
{'fwhost err ipcheck'};
1848 #get address from IPSEC NETWORK
1849 if ($type eq 'IpSec Network'){
1850 foreach my $key (keys %ipsecconf) {
1851 if ($ipsecconf{$key}[1] eq $name){
1852 return $ipsecconf{$key}[11];
1855 &deletefromgrp
($name,$configgrp);
1858 #get address from IPSEC HOST
1859 if ($type eq 'IpSec Host'){
1860 foreach my $key (keys %ipsecconf) {
1861 if ($ipsecconf{$key}[1] eq $name){
1862 return $ipsecconf{$key}[10];
1865 &deletefromgrp
($name,$configgrp);
1868 #get address from ovpn ccd Net-2-Net
1869 if ($type eq 'OpenVPN N-2-N'){
1870 foreach my $key (keys %ccdhost) {
1871 if($ccdhost{$key}[1] eq $name){
1872 my ($a,$b) = split ("/",$ccdhost{$key}[11]);
1873 $b=&General
::iporsubtodec
($b);
1877 &deletefromgrp
($name,$configgrp);
1880 #get address from ovpn ccd static host
1881 if ($type eq 'OpenVPN static host'){
1882 foreach my $key (keys %ccdhost) {
1883 if($ccdhost{$key}[1] eq $name){
1884 my ($a,$b) = split (/\//,$ccdhost{$key}[33]);
1885 $b=&General
::iporsubtodec
($b);
1889 &deletefromgrp
($name,$configgrp);
1892 #get address from ovpn ccd static net
1893 if ($type eq 'OpenVPN static network'){
1894 foreach my $key (keys %ccdnet) {
1895 if ($ccdnet{$key}[0] eq $name){
1896 my ($a,$b) = split (/\//,$ccdnet{$key}[1]);
1897 $b=&General
::iporsubtodec
($b);
1903 #check custom addresses
1904 if ($type eq 'Custom Host'){
1905 foreach my $key (keys %customhost) {
1906 if ($customhost{$key}[0] eq $name){
1907 return $customhost{$key}[2];
1912 ##check custom networks
1913 if ($type eq 'Custom Network'){
1914 foreach my $key (keys %customnetwork) {
1915 if($customnetwork{$key}[0] eq $name){
1916 return $customnetwork{$key}[1]."/".$customnetwork{$key}[2];
1921 #check standard networks
1922 if ($type eq 'Standard Network'){
1923 if ($name =~ /OpenVPN/i){
1925 &General
::readhash
("${General::swroot}/ovpn/settings",\
%ovpn);
1926 return $ovpn{'DOVPN_SUBNET'};
1928 if ($name eq 'GREEN'){
1930 &General
::readhash
("${General::swroot}/ethernet/settings",\
%hash);
1931 return $hash{'GREEN_NETADDRESS'}."/".$hash{'GREEN_NETMASK'};
1933 if ($name eq 'BLUE'){
1935 &General
::readhash
("${General::swroot}/ethernet/settings",\
%hash);
1936 return $hash{'BLUE_NETADDRESS'}."/".$hash{'BLUE_NETMASK'};
1938 if ($name eq 'ORANGE'){
1940 &General
::readhash
("${General::swroot}/ethernet/settings",\
%hash);
1941 return $hash{'ORANGE_NETADDRESS'}."/".$hash{'ORANGE_NETMASK'};
1943 if ($name eq 'ALL'){
1944 return "0.0.0.0/0.0.0.0";
1946 if ($name =~ /IPsec/i){
1948 &General
::readhash
("${General::swroot}/vpn/settings",\
%hash);
1949 return $hash{'RW_NET'};
1955 if (!-f
"${General::swroot}/fwhosts/reread"){
1956 system("touch ${General::swroot}/fwhosts/reread");
1957 system("touch ${General::swroot}/forward/reread");
1962 system ("/usr/local/bin/forwardfwctrl");
1963 if ( -f
"${General::swroot}/fwhosts/reread"){
1964 system("rm ${General::swroot}/fwhosts/reread");
1965 system("rm ${General::swroot}/forward/reread");
1972 &General
::readhasharray
("$confignet", \
%customnetwork);
1973 &General
::readhasharray
("$confighost", \
%customhost);
1974 foreach my $key (sort keys %customgrp ){
1975 if ( ($customgrp{$key}[0] eq $grp) && ($customgrp{$key}[3] eq 'Custom Network')){
1976 foreach my $key1 (sort keys %customnetwork){
1977 if ($customnetwork{$key1}[0] eq $customgrp{$key}[2]){
1978 $customnetwork{$key1}[4]=$customnetwork{$key1}[4]-1;
1984 if (($customgrp{$key}[0] eq $grp) && ($customgrp{$key}[3] eq 'Custom Host')){
1985 foreach my $key2 (sort keys %customhost){
1986 if ($customhost{$key2}[0] eq $customgrp{$key}[2]){
1987 $customhost{$key2}[4]=$customhost{$key2}[4]-1;
1994 &General
::writehasharray
("$confignet", \
%customnetwork);
1995 &General
::writehasharray
("$confighost", \
%customhost);
2000 &General
::readhasharray
("$configsrv", \
%customservice);
2001 &General
::readhasharray
("$configsrvgrp", \
%customservicegrp);
2003 foreach my $key (sort keys %customservicegrp){
2004 if ($customservicegrp{$key}[0] eq $grp ){
2005 foreach my $key2 (sort keys %customservice){
2006 if ($customservice{$key2}[0] eq $customservicegrp{$key}[2]){
2007 $customservice{$key2}[4]--;
2012 &General
::writehasharray
("$configsrv", \
%customservice);
2018 my %hash=%{(shift)};
2020 if ($fwhostsettings{'SRV_NAME'} eq '' ){
2021 $errormessage=$Lang::tr
{'fwhost err name1'};
2023 if ($fwhostsettings{'SRV_PORT'} eq '' && $fwhostsettings{'PROT'} ne 'ICMP'){
2024 $errormessage=$Lang::tr
{'fwhost err port'};
2027 if (! &validhostname
($fwhostsettings{'SRV_NAME'})){
2028 $errormessage="<br>".$Lang::tr
{'fwhost err name'};
2030 #change dashes with :
2031 $fwhostsettings{'SRV_PORT'}=~ tr/-/:/;
2033 if ($fwhostsettings{'SRV_PORT'} eq "*") {
2034 $fwhostsettings{'SRV_PORT'} = "1:65535";
2036 if ($fwhostsettings{'SRV_PORT'} =~ /^(\D)\:(\d+)$/) {
2037 $fwhostsettings{'SRV_PORT'} = "1:$2";
2039 if ($fwhostsettings{'SRV_PORT'} =~ /^(\d+)\:(\D)$/) {
2040 $fwhostsettings{'SRV_PORT'} = "$1:65535";
2042 if($fwhostsettings{'PROT'} ne 'ICMP'){
2043 $errormessage = $errormessage.&General
::validportrange
($fwhostsettings{'SRV_PORT'}, 'src');
2045 # a new service has to have a different name
2046 foreach my $key (keys %hash){
2047 if ($hash{$key}[0] eq $fwhostsettings{'SRV_NAME'}){
2048 $errormessage = "<br>".$Lang::tr
{'fwhost err srv exists'};
2052 return $errormessage;
2056 # Checks a hostname against RFC1035
2057 my $hostname = $_[0];
2059 # Each part should be at least two characters in length
2060 # but no more than 63 characters
2061 if (length ($hostname) < 1 || length ($hostname) > 63) {
2063 # Only valid characters are a-z, A-Z, 0-9 and -
2064 if ($hostname !~ /^[a-zA-ZäöüÖÄÜ0-9-_.;()\/\s
]*$/) {
2066 # First character can only be a letter or a digit
2067 if (substr ($hostname, 0, 1) !~ /^[a-zA-ZöäüÖÄÜ0-9]*$/) {
2069 # Last character can only be a letter or a digit
2070 if (substr ($hostname, -1, 1) !~ /^[a-zA-ZöäüÖÄÜ0-9()]*$/) {
2076 # Checks a hostname against RFC1035
2078 # Each part should be at least two characters in length
2079 # but no more than 63 characters
2080 if (length ($remark) < 1 || length ($remark) > 255) {
2082 # Only valid characters are a-z, A-Z, 0-9 and -
2083 if ($remark !~ /^[a-zäöüA-ZÖÄÜ0-9-.:;\|_()\/\s
]*$/) {
2085 # First character can only be a letter or a digit
2086 if (substr ($remark, 0, 1) !~ /^[a-zäöüA-ZÖÄÜ0-9]*$/) {
2088 # Last character can only be a letter or a digit
2089 if (substr ($remark, -1, 1) !~ /^[a-zöäüA-ZÖÄÜ0-9.:;_)]*$/) {
2093 &Header
::closebigbox
();
2094 &Header
::closepage
();