]> git.ipfire.org Git - ipfire-2.x.git/blame - src/wio/wio.cgi
/var/ipfire/ethernet/settings: Drop BROADCAST variable
[ipfire-2.x.git] / src / wio / wio.cgi
CommitLineData
0d6cc79d
SF
1#!/usr/bin/perl
2#
3###############################################################################
4# #
5# IPFire.org - A linux based firewall #
953882ff 6# Copyright (C) 2017-2020 Stephan Feddersen <sfeddersen@ipfire.org> #
0d6cc79d
SF
7# All Rights Reserved. #
8# #
9# This program is free software: you can redistribute it and/or modify #
10# it under the terms of the GNU General Public License as published by #
11# the Free Software Foundation, either version 3 of the License, or #
12# (at your option) any later version. #
13# #
14# This program is distributed in the hope that it will be useful, #
15# but WITHOUT ANY WARRANTY; without even the implied warranty of #
16# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
17# GNU General Public License for more details. #
18# #
19# You should have received a copy of the GNU General Public License #
20# along with this program. If not, see <http://www.gnu.org/licenses/>. #
21# #
22###############################################################################
23#
48aae162 24# Version: 2020/08/04 21:12:23
0d6cc79d 25#
391a2459 26# This wio.cgi is based on the code from the IPCop WIO Addon
0d6cc79d
SF
27# and is extremly adapted to work with IPFire.
28#
29# Autor: Stephan Feddersen
30# Co-Autor: Alexander Marx
391a2459 31# Co-Autor: Frank Mainz (for some code for the IPCop WIO Addon)
0d6cc79d
SF
32#
33
34use strict;
35
36# enable only the following on debugging purpose
37#use warnings;
38#no warnings 'once';
39#use CGI::Carp 'fatalsToBrowser';
40
41my $debug = 0;
42
43use Socket;
44use POSIX qw(strftime);
45use File::Copy;
46use Fatal qw/ open /;
47use Net::Telnet;
48
49require '/var/ipfire/general-functions.pl';
1bee37ba 50require '/var/ipfire/network-functions.pl';
0d6cc79d
SF
51require '/var/ipfire/lang.pl';
52require '/var/ipfire/header.pl';
53require '/usr/lib/wio/wio-lib.pl';
54require '/usr/lib/wio/wio-graphs.pl';
55
56my $logdir = "/var/log/wio";
57
391a2459 58my ( %mainsettings, %mailsettings, %wiosettings, %cgiparams, %netsettings, %ipshash, %vpnsettings,
0d6cc79d
SF
59 %vpnconfighash, %ovpnconfighash, %ovpnccdconfhash, %ovpnsettings, %checked, %selected, %color ) = ();
60
61&General::readhash('/var/ipfire/main/settings', \%mainsettings);
62&General::readhash('/var/ipfire/ethernet/settings', \%netsettings);
63&General::readhash('/var/ipfire/dma/mail.conf', \%mailsettings);
64&General::readhash('/var/ipfire/wio/wio.conf', \%wiosettings);
65&General::readhash("/srv/web/ipfire/html/themes/".$mainsettings{'THEME'}."/include/colors.txt", \%color);
66&General::readhasharray('/var/ipfire/ovpn/ovpnconfig', \%ovpnconfighash);
67&General::readhash('/var/ipfire/ovpn/settings', \%ovpnsettings);
68&General::readhasharray('/var/ipfire/ovpn/ccd.conf', \%ovpnccdconfhash);
69&General::readhasharray('/var/ipfire/vpn/config', \%vpnconfighash);
391a2459 70&General::readhash('/var/ipfire/vpn/settings', \%vpnsettings);
0d6cc79d
SF
71
72my $ipadrfile = "$logdir/wioips";
73my $onoffip = "$logdir/wioscip";
74my $wiosettings = "/var/ipfire/wio/wio.conf";
75my $dyndnsconfig = "/var/ipfire/ddns/config";
76my $importfile = "$logdir/importfile";
77my $wiofile = "$logdir/wiofile";
78my $editfile = "$logdir/editfile";
79my $hostfile = "/var/ipfire/main/hosts";
80my $dhcpfile = "/var/ipfire/dhcp/fixleases";
81my $imgstatic = "/images/wio";
82my $rrddir = "/var/log/rrd/wio";
83my $refreshbox = '<meta http-equiv="refresh" content="0;url=/cgi-bin/wio.cgi">';
84my $sortstring = '^IPADR|^HOST';
85my $ovpnaddon = "/var/ipfire/ovpn";
86my $ovpnpid = "/var/run/openvpn.pid";
87my $vpnpid = "/var/run/charon.pid";
88my $redactive = "/var/ipfire/red/active";
89my $redip = '-';
90my $now = strftime "%Y-%m-%d", localtime;
91
92if ( -e $redactive ) {
93 open(IPADDR, "/var/ipfire/red/local-ipaddress");
94 $redip = <IPADDR>;
95 close IPADDR;
96 chomp($redip);
97}
98
99my $i = 0;
100my $idarp = 0;
101my $iddyndns = 0;
102my $idvpn = 0;
103my $idovpn = 0;
104my $idsort = 0;
105my $nr = 0;
106my $count = 0;
107my $showcount = 0;
108
a25c95b3 109my $arpbuttontext = "$Lang::tr{'wio_show_table_on'}";
c1fc92a9
SFD
110my $clientimportbuttontext = "$Lang::tr{'wio_show_table_on'}";
111my $networksearchbuttontext = "$Lang::tr{'wio_show_table_on'}";
a25c95b3 112
c1fc92a9 113my ( $message, $infomessage, $errormessage, $importmessage ) = '';
0d6cc79d
SF
114
115my ( $buttontext, $host, $timestamp, $ipadr, $on, $remark, $dyndns, $dyndnsip, $sendemailon, $net, $dev, $iprange, $output, $write, $webinterface,
391a2459 116 $sendemailoff, $pingmethode, $online, $color, $bgcolor, $exitcode, $id, $line, $interface, $counter, $vpnn2nip, $vpnn2nmask, $edc,
0d6cc79d
SF
117 $edd, $wmon, $wmoff, $ipfqdn, $http, $wioscan, $statustxt, $status, $key, $ic, $text, $image ) = ();
118
119my ( @temp, @dates, @ipaddresses, @names, @remark, @sendemailon, @sendemailoff, @current, @ddns, @match, @webinterface, @arpcache, @arpadd, @line,
120 @hosts, @vpnstatus, @ovpnstatus, @activ, @dyndns, @pingmethode, @status, @id, @write, @log );
121
122my @nosaved = ('ACTION','ID','CLIENTID','TIMESTAMP','IPADR','HOST','REMARK','DYNDNS','SENDEMAILON','SENDEMAILOFF','PINGMETHODE','ONLINE','WEBINTERFACE');
123
124my @devs_color = ('GREEN','BLUE','ORANGE','RED');
125my @devs_net = ('green0','blue0','orange0','red0');
126my @devs_img = ('green.png','blue.png','orange.png','red.png');
127my @devs_alt = ('green','blue','orange','red');
128
129my %ifacecolor = ( GREEN => 'wio_run_green', BLUE => 'wio_run_blue', ORANGE => 'wio_run_orange');
130
391a2459
SF
131#if ( $netsettings{'RED_TYPE'} eq 'STATIC' || $netsettings{'RED_TYPE'} eq 'DHCP' ) {
132# %ifacecolor = ( %ifacecolor, RED => 'wio_run_red' );
133#}
134
0d6cc79d
SF
135&loadips();
136
137## some wio settings
138
139$wiosettings{'ACTION'} = '';
140$wiosettings{'COUNT'} = '';
141$wiosettings{'ID'} = '';
142$wiosettings{'CLIENTID'} = '';
143$wiosettings{'SORT'} = 'IPADR';
144$wiosettings{'HOST'} = '';
145$wiosettings{'IPADR'} = '';
146$wiosettings{'EN'} = 'on';
147$wiosettings{'REMARK'} = '';
148$wiosettings{'DYNDNS'} = '';
149$wiosettings{'CLIENTREMARK'} = '';
150$wiosettings{'SENDEMAILON'} = '';
151$wiosettings{'SENDEMAILOFF'} = '';
152$wiosettings{'PINGMETHODE'} = 'ip';
153$wiosettings{'WEBINTERFACE'} = '----';
154$wiosettings{'TIMEOUT'} = '1';
155$wiosettings{'TIMESTAMP'} = '';
156$wiosettings{'ONLINE'} = 'off';
157$wiosettings{'CRON'} = '15';
158$wiosettings{'OVPNCRON'} = '5';
159$wiosettings{'ENABLE'} = 'off';
160$wiosettings{'LOGGING'} = 'off';
161$wiosettings{'MAILREMARK'} = 'off';
162$wiosettings{'MAILSTYLE'} = 'email';
163$wiosettings{'OVPNRWMAIL'} = 'off';
a25c95b3
SFD
164$wiosettings{'WIOGUISHOWARPTABLE'} = '';
165$wiosettings{'WIOGUISHOWCLIENTIMPORTTABLE'} = '';
166$wiosettings{'WIOGUISHOWNETWORKSEARCHTABLE'} = '';
0d6cc79d
SF
167
168&Header::getcgihash(\%wiosettings);
169&Header::getcgihash(\%mainsettings);
170&Header::getcgihash(\%mailsettings);
171&Header::getcgihash(\%netsettings);
172
173if ( $mailsettings{'USEMAIL'} eq 'on' ) { $wiosettings{'SENDEMAIL'} = 'on'; }
174else { $wiosettings{'SENDEMAIL'} = 'off'; }
175
176if ( -e $wiofile ) { goto WIOSCAN; }
177
178## get network ips
179foreach (@devs_color) {
180 if ( $netsettings{"${_}_DEV"} ne '' ) {
1bee37ba 181 $wiosettings{"${_}_IPLOW"} = &Network::find_next_ip_address($netsettings{"${_}_NETADDRESS"}, 1);
b67f02d5
MT
182
183 my $broadcast = &Network::get_broadcast($netsettings{"${_}_NETADDRESS"} . "/" . $netsettings{"${_}_NETMASK"});
184 $wiosettings{"${_}_IPHIGH"} = &Network::find_next_ip_address($broadcast, -1);
0d6cc79d
SF
185 }
186}
187
188## save wio settings
189
190if ( $wiosettings{'ACTION'} eq $Lang::tr{'wio_save'}.'1' ) {
191 unless ( `ps -A | grep wio.pl` ) {
192 $cgiparams{'SORT'} = $wiosettings{'SORT'};
193 $cgiparams{'CRON'} = $wiosettings{'CRON'};
194 $cgiparams{'OVPNCRON'} = $wiosettings{'OVPNCRON'};
195 $cgiparams{'ENABLE'} = $wiosettings{'ENABLE'};
196 $cgiparams{'LOGGING'} = $wiosettings{'LOGGING'};
197 $cgiparams{'TIMEOUT'} = $wiosettings{'TIMEOUT'};
198 $cgiparams{'ACTION'} = $wiosettings{'ACTION'};
199 $cgiparams{'CLIENTREMARK'} = $wiosettings{'CLIENTREMARK'};
200 $cgiparams{'MAILREMARK'} = $wiosettings{'MAILREMARK'};
201 $cgiparams{'MAILSTYLE'} = $wiosettings{'MAILSTYLE'};
202 $cgiparams{'OVPNRWMAIL'} = $wiosettings{'OVPNRWMAIL'};
0d6cc79d
SF
203
204 &General::writehash($wiosettings, \%cgiparams);
205 &General::readhash($wiosettings, \%wiosettings);
206
207 if ( $wiosettings{'ENABLE'} eq 'off' ) {
208 &WIO::clearfile($ipadrfile);
209 unlink glob "$rrddir/*";
210 }
211 }
212 else {
213 $infomessage = "$Lang::tr{'wio_error_function'}";
214 }
215}
216
217## save imported clients
218
219if ( $wiosettings{'ACTION'} eq $Lang::tr{'wio_save'}.'2' ) {
220 unless ( `ps -A | grep wio.pl` ) {
221 while ( $count < $wiosettings{'COUNT'} ) {
222 if ( defined($wiosettings{"USE$count"}) && $wiosettings{"USE$count"} eq 'on' ) {
83596e70 223 $wiosettings{'CLIENTID'} = $wiosettings{"CLIENTID$count"};
0d6cc79d
SF
224 $wiosettings{'TIMESTAMP'} = $wiosettings{"TIMESTAMP$count"};
225 $wiosettings{'IPADR'} = $wiosettings{"IPADR$count"};
226 $wiosettings{'HOST'} = $wiosettings{"HOST$count"};
227 $wiosettings{'EN'} = $wiosettings{"EN$count"};
228 $wiosettings{'REMARK'} = $wiosettings{"REMARK$count"};
229 $wiosettings{'DYNDNS'} = $wiosettings{"DYNDNS$count"};
230 $wiosettings{'SENDEMAILON'} = $wiosettings{"SENDEMAILON$count"};
231 $wiosettings{'SENDEMAILOFF'} = $wiosettings{"SENDEMAILOFF$count"};
232 $wiosettings{'PINGMETHODE'} = $wiosettings{"PINGMETHODE$count"};
233 $wiosettings{'ONLINE'} = $wiosettings{"ONLINE$count"};
83596e70 234 $wiosettings{'WEBINTERFACE'} = $wiosettings{"WEBINTERFACE$count"};
0d6cc79d
SF
235
236 &validSave();
237
238 if ($errormessage) {
239 open(FILE, ">> $editfile");
240 print FILE "$wiosettings{'CLIENTID'},$wiosettings{'TIMESTAMP'},$wiosettings{'IPADR'},$wiosettings{'HOST'},$wiosettings{'EN'},$wiosettings{'REMARK'},$wiosettings{'DYNDNS'},$wiosettings{'SENDEMAILON'},$wiosettings{'SENDEMAILOFF'},$wiosettings{'PINGMETHODE'},$wiosettings{'ONLINE'},$wiosettings{'WEBINTERFACE'}\n";
241 close(FILE);
242 $importmessage = $errormessage;
243 }
244 else {
245 $wiosettings{'CLIENTID'} = &General::findhasharraykey (\%ipshash);
246 unshift (@current, "$wiosettings{'CLIENTID'},$wiosettings{'TIMESTAMP'},$wiosettings{'IPADR'},$wiosettings{'HOST'},$wiosettings{'EN'},$wiosettings{'REMARK'},$wiosettings{'DYNDNS'},$wiosettings{'SENDEMAILON'},$wiosettings{'SENDEMAILOFF'},$wiosettings{'PINGMETHODE'},$wiosettings{'ONLINE'},$wiosettings{'WEBINTERFACE'}\n");
247 &SortDataFile('',@current);
248 }
249 }
250 $count++;
251 }
252
253 map ($wiosettings{$_} = '' ,@nosaved);
254 unlink ($importfile);
255 if ( -e "$editfile" ) { goto EDIT; }
256 }
257 else {
258 $infomessage = "$Lang::tr{'wio_error_function'}";
259 }
260}
261
262## add or update client
263
264if ( $wiosettings{'ACTION'} eq $Lang::tr{'wio_client_add'} ) {
265 unless ( `ps -A | grep wio.pl` ) {
266 &validSave();
267
268 unless ($errormessage) {
269 if ( $wiosettings{'ID'} eq '' && $wiosettings{'ACTION'} ne $Lang::tr{'edit'} ) {
270 $wiosettings{'CLIENTID'} = &General::findhasharraykey (\%ipshash);
271 unshift (@current, "$wiosettings{'CLIENTID'},$wiosettings{'TIMESTAMP'},$wiosettings{'IPADR'},$wiosettings{'HOST'},$wiosettings{'EN'},$wiosettings{'REMARK'},$wiosettings{'DYNDNS'},$wiosettings{'SENDEMAILON'},$wiosettings{'SENDEMAILOFF'},$wiosettings{'PINGMETHODE'},$wiosettings{'ONLINE'},$wiosettings{'WEBINTERFACE'}\n");
272 }
273 else {
274 @current[$wiosettings{'ID'}] = "$wiosettings{'CLIENTID'},$wiosettings{'TIMESTAMP'},$wiosettings{'IPADR'},$wiosettings{'HOST'},$wiosettings{'EN'},$wiosettings{'REMARK'},$wiosettings{'DYNDNS'},$wiosettings{'SENDEMAILON'},$wiosettings{'SENDEMAILOFF'},$wiosettings{'PINGMETHODE'},$wiosettings{'ONLINE'},$wiosettings{'WEBINTERFACE'}\n";
275 }
276 }
277 else { goto ERROR; }
278
279 map ($wiosettings{$_} = '' ,@nosaved);
280 &SortDataFile('',@current);
281 }
282 else {
283 $infomessage = "$Lang::tr{'wio_error_function'}";
284 }
285}
286
a25c95b3
SFD
287## show / hide arptable
288
c1fc92a9 289if ( $wiosettings{'WIOGUISHOWARPTABLE'} eq 'arptable' ) {
83596e70
SF
290 unless ( `ps -A | grep wio.pl` ) {
291 if ( $wiosettings{'ACTION'} eq $Lang::tr{'wio_show_table_off'} ) {
292 $wiosettings{'WIOGUISHOWARPTABLE'} = 'off';
293 $arpbuttontext = "$Lang::tr{'wio_show_table_on'}";
294 }
295 else {
296 $wiosettings{'WIOGUISHOWARPTABLE'} = 'on';
297 $arpbuttontext = "$Lang::tr{'wio_show_table_off'}";
298 }
a25c95b3
SFD
299 }
300 else {
83596e70 301 $infomessage = "$Lang::tr{'wio_error_function'}";
a25c95b3
SFD
302 }
303}
304
305## show / hide clientimporttable
306
307if ( $wiosettings{'WIOGUISHOWCLIENTIMPORTTABLE'} eq 'clientimport' ) {
83596e70
SF
308 unless ( `ps -A | grep wio.pl` ) {
309 if ( $wiosettings{'ACTION'} eq $Lang::tr{'wio_show_table_off'} ) {
310 $wiosettings{'WIOGUISHOWCLIENTIMPORTTABLE'} = 'off';
311 $clientimportbuttontext = "$Lang::tr{'wio_show_table_on'}";
312 }
313 else {
314 $wiosettings{'WIOGUISHOWCLIENTIMPORTTABLE'} = 'on';
315 $clientimportbuttontext = "$Lang::tr{'wio_show_table_off'}";
316 }
a25c95b3
SFD
317 }
318 else {
83596e70 319 $infomessage = "$Lang::tr{'wio_error_function'}";
a25c95b3
SFD
320 }
321}
322
323## show / hide networksearchtable
324
325if ( $wiosettings{'WIOGUISHOWNETWORKSEARCHTABLE'} eq 'networksearch' ) {
83596e70
SF
326 unless ( `ps -A | grep wio.pl` ) {
327 if ( $wiosettings{'ACTION'} eq $Lang::tr{'wio_show_table_off'} ) {
328 $wiosettings{'WIOGUISHOWNETWORKSEARCHTABLE'} = 'off';
329 $networksearchbuttontext = "$Lang::tr{'wio_show_table_on'}";
330 }
331 else {
332 $wiosettings{'WIOGUISHOWNETWORKSEARCHTABLE'} = 'on';
333 $networksearchbuttontext = "$Lang::tr{'wio_show_table_off'}";
334 }
a25c95b3
SFD
335 }
336 else {
83596e70 337 $infomessage = "$Lang::tr{'wio_error_function'}";
a25c95b3
SFD
338 }
339}
340
0d6cc79d
SF
341## add arp client
342
343if ( $wiosettings{'ACTION'} eq $Lang::tr{'wio_add'} ) {
344 unless ( `ps -A | grep wio.pl` ) {
345 open(FILE, "$logdir/.arpcache");
346 @arpadd = <FILE>;
347 close (FILE);
348
349 chomp(@arpadd[$wiosettings{'ID'}]);
350 @temp = split (/\,/, @arpadd[$wiosettings{'ID'}]);
351
352 $wiosettings{'CLIENTID'} = &General::findhasharraykey (\%ipshash);
353 $wiosettings{'IPADR'} = $temp[1];
354 $wiosettings{'HOST'} = $temp[2];
355 $wiosettings{'EN'} = 'on';
356
357 $wiosettings{'PINGMETHODE'} = 'ip';
358 $wiosettings{'ONLINE'} = 'off';
359
360 open(FILE, ">> $editfile");
361 print FILE "$wiosettings{'CLIENTID'},$wiosettings{'TIMESTAMP'},$wiosettings{'IPADR'},$wiosettings{'HOST'},$wiosettings{'EN'},$wiosettings{'REMARK'},$wiosettings{'DYNDNS'},$wiosettings{'SENDEMAILON'},$wiosettings{'SENDEMAILOFF'},$wiosettings{'PINGMETHODE'},$wiosettings{'ONLINE'},$wiosettings{'WEBINTERFACE'}\n";
362 close(FILE);
363
364 goto EDIT;
365 }
366 else {
367 undef($wiosettings{'ID'});
368 $infomessage = "$Lang::tr{'wio_error_function'}";
369 }
370}
371
c1fc92a9 372## enable / disable client || enable / disable dyndns || enable / disable sendemailon || enable / disable sendemailoff || change ip / fqdn
0d6cc79d
SF
373
374if ( $wiosettings{'ACTION'} eq $Lang::tr{'enable disable client'} ) { $edc = 'on'; }
375if ( $wiosettings{'ACTION'} eq $Lang::tr{'enable disable dyndns'} ) { $edd = 'on'; }
376if ( $wiosettings{'ACTION'} eq $Lang::tr{'wio_mail_online'} ) { $wmon = 'on'; }
377if ( $wiosettings{'ACTION'} eq $Lang::tr{'wio_mail_offline'} ) { $wmoff = 'on'; }
378if (( $wiosettings{'ACTION'} eq $Lang::tr{'wio_ip_on'} ) || ( $wiosettings{'ACTION'} eq $Lang::tr{'wio_fqdn_on'} )) { $ipfqdn = 'on'; }
379
380if ( defined($edc) || defined($edd) || defined($wmon) || defined($wmoff) || defined($ipfqdn) ) {
381 unless ( `ps -A | grep wio.pl` ) {
382 chomp(@current[$wiosettings{'ID'}]);
383 @temp = split (/\,/, @current[$wiosettings{'ID'}]);
384
385 if ( $edc eq 'on' ) {
386 $temp[4] = $temp[4] ne '' ? '' : 'on';
387 $temp[10] = '';
388 $temp[11] = '';
389 $temp[1] = '';
390 unlink "$rrddir/$temp[0].rrd";
391 }
392 elsif ( $edd eq 'on' ) { $temp[6] = $temp[6] ne '' ? '' : 'on'; }
393 elsif ( $wmon eq 'on' ) { $temp[7] = $temp[7] ne '' ? '' : 'on'; }
394 elsif ( $wmoff eq 'on' ) { $temp[8] = $temp[8] ne '' ? '' : 'on'; }
395 elsif ( $ipfqdn eq 'on' ) { $temp[9] = $temp[9] eq 'fqdn' ? 'ip' : 'fqdn'; }
396
397 @current[$wiosettings{'ID'}] = join (',', @temp)."\n";
398 undef($wiosettings{'ID'});
399
400 &writeips();
401 }
402 else {
403 undef($wiosettings{'ID'});
404 $infomessage = "$Lang::tr{'wio_error_function'}";
405 }
406}
407
408## refresh wio status || refresh single client status
409
410if ( $wiosettings{'ACTION'} eq $Lang::tr{'wio_refresh'} || $wiosettings{'ACTION'} eq $Lang::tr{'wio_sc_refresh'} ) {
411
83596e70
SF
412unless ( `ps -A | grep wio.pl` ) {
413
0d6cc79d
SF
414 if ( $wiosettings{'ACTION'} eq $Lang::tr{'wio_sc_refresh'} ) {
415 open(FILE, "> $onoffip");
416 print FILE @current[$wiosettings{'ID'}];
417 close(FILE);
418
419 undef($wiosettings{'ID'});
420 }
421
0d6cc79d
SF
422&Header::showhttpheaders();
423&Header::openpage($Lang::tr{'wio'}, 1, $refreshbox);
424&Header::openbigbox('100%', 'left', '');
425&Header::openbox('100%', 'left', $Lang::tr{'wio_info'});
426
427print"
428<table align='center' width='100%'>
429 <tr><td align='center'>$Lang::tr{'wio_msg'}</td></tr>
430 <tr><td>&nbsp;</td></tr>
431 <tr><td align='center'><img align='middle' src='/images/indicator.gif' /></td></tr>
432</table>
433";
434
435&Header::closebox();
436&Header::closebigbox();
437&Header::closepage();
438
439while ( system("/usr/local/bin/wiohelper", "&") ) {}
440
83596e70 441exit 0;
0d6cc79d
SF
442}
443else {
444 $infomessage = "$Lang::tr{'wio_already_running'}";
a25c95b3 445 unlink($onoffip);
0d6cc79d
SF
446}
447
448}
449
450## refresh dyndns ip
451
452if ( $wiosettings{'ACTION'} eq $Lang::tr{'wio_dyndns_refresh'} ) {
453 unless ( `ps -A | grep wio.pl` ) {
454 chomp(@current[$wiosettings{'ID'}]);
455 @temp = split (/\,/, @current[$wiosettings{'ID'}]);
456
457 ($temp[2], $infomessage) = &WIO::getdyndnsip($temp[2], $temp[3]);
458
459 @current[$wiosettings{'ID'}] = join (',', @temp)."\n";
460
461 &writeips();
462
463 undef($wiosettings{'ID'});
464 }
465 else {
466 $infomessage = "$Lang::tr{'wio_error_function'}";
467 }
468}
469
470## edit client
471
472if ( $wiosettings{'ACTION'} eq $Lang::tr{'edit'} ) {
473 unless ( `ps -A | grep wio.pl` ) {
474 chomp(@current[$wiosettings{'ID'}]);
475 @temp = split (/\,/, @current[$wiosettings{'ID'}]);
476
477 $wiosettings{'CLIENTID'} = $temp[0];
478 $wiosettings{'TIMESTAMP'} = $temp[1];
479 $wiosettings{'IPADR'} = $temp[2];
480 $wiosettings{'HOST'} = $temp[3];
481 $wiosettings{'EN'} = $temp[4];
482 $wiosettings{'REMARK'} = $temp[5];
483 $wiosettings{'DYNDNS'} = $temp[6];
484 $wiosettings{'SENDEMAILON'} = $temp[7];
485 $wiosettings{'SENDEMAILOFF'} = $temp[8];
486 $wiosettings{'PINGMETHODE'} = $temp[9];
487 $wiosettings{'ONLINE'} = $temp[10];
488 $wiosettings{'WEBINTERFACE'} = $temp[11];
489 }
490 else {
491 undef($wiosettings{'ACTION'});
492 $infomessage = "$Lang::tr{'wio_error_function'}";
493 }
494}
495
496## remove client
497
498if ( $wiosettings{'ACTION'} eq $Lang::tr{'wio_remove_client'} ) {
499 unless ( `ps -A | grep wio.pl` ) {
500 chomp(@current[$wiosettings{'ID'}]);
501
502 @temp = split (/\,/, @current[$wiosettings{'ID'}]);
503
504 unlink "$rrddir/$temp[0].rrd";
505
506 splice (@current,$wiosettings{'ID'},1);
507
508 &writeips();
509
510 undef($wiosettings{'ID'});
511 }
512 else {
513 undef($wiosettings{'ID'});
514 $infomessage = "$Lang::tr{'wio_error_function'}";
515 }
516}
517
518## remove all clients
519
520if ( $wiosettings{'ACTION'} eq $Lang::tr{'wio_remove_all'} ) {
521 unless ( `ps -A | grep wio.pl` ) {
522 &WIO::clearfile($ipadrfile);
523 unlink glob "$rrddir/*";
524 undef(@current);
525 }
526 else {
527 $infomessage = "$Lang::tr{'wio_error_function'}";
528 }
529}
530
531## back function
532
533if ( $wiosettings{'ACTION'} eq $Lang::tr{'wio_back'} ) {
534 if ( -e "$importfile" ) { unlink ($importfile); }
535 map ($wiosettings{$_} = '' ,@nosaved);
536 undef($errormessage);
537}
538
539## import hosts, fixleases or csv file || scan networks (green/blue/orange)
540
541if ( $wiosettings{'ACTION'} eq 'wio_run_green' ||
542 $wiosettings{'ACTION'} eq 'wio_run_blue' ||
391a2459 543 $wiosettings{'ACTION'} eq 'wio_run_red' ||
0d6cc79d
SF
544 $wiosettings{'ACTION'} eq 'wio_run_orange') { $wioscan = 'on'; }
545
546if ( $wiosettings{'ACTION'} eq $Lang::tr{'wio_import'}.'1' ||
547 $wiosettings{'ACTION'} eq $Lang::tr{'wio_import'}.'2' ||
548 $wiosettings{'ACTION'} eq $Lang::tr{'wio_import'}.'3' ||
549 defined($wioscan) || defined($importmessage) ) {
550
551unless ( `ps -A | grep wio.pl` ) {
552 if ( $wiosettings{'ACTION'} eq $Lang::tr{'wio_import'}.'1' && $importmessage eq '' ) {
553
554 &Header::getcgihash(\%wiosettings, {'wantfile' => 1, 'filevar' => 'CSVFILE'});
555
556 if ( $wiosettings{'CSVFILE'} eq '' ) {
557 $errormessage = $Lang::tr{'wio_no_file_selected'};
558 $message = 2; goto ERROR;
559 }
560
561 if ( $wiosettings{'CSVFILE'} =~ /[^a-z0-9A-Z\ \.\-\_\:\\]+/ ) {
562 $errormessage = $Lang::tr{'wio_no_csv_error'};
563 $message = 2; goto ERROR;
564 }
565
566 if ( !($wiosettings{'CSVFILE'} =~ /.csv$/) ) {
567 $errormessage = $Lang::tr{'wio_no_csv'};
568 $message = 2; goto ERROR;
569 }
570
571 if (copy($wiosettings{'CSVFILE'}, "$logdir/importfile") != 1) {
572 $errormessage = $!;
573 $message = 2; goto ERROR;
574 }
575 }
576
577EDIT:
578
579&General::readhash($wiosettings, \%wiosettings);
580
581&Header::showhttpheaders();
582&Header::openpage($Lang::tr{'wio'}, 1, '');
583&Header::openbigbox('100%', 'left');
584
585if ($importmessage) {
586 &Header::openbox('100%', 'left', $Lang::tr{'wio_error'}, 'error');
587 print" <table width='100%'><tr><td><font class='base'>$importmessage</font></td></tr></table>";
588 &Header::closebox();
589}
590
591if ( -e "$editfile" ) {
592 open(FILE, "< $editfile" ); }
593elsif ( $wiosettings{'ACTION'} eq $Lang::tr{'wio_import'}.'1' ) {
594 open(FILE, "< $importfile" ); }
595elsif ( $wiosettings{'ACTION'} eq $Lang::tr{'wio_import'}.'2' ) {
596 open(FILE, "< $hostfile" ); }
597elsif ( $wiosettings{'ACTION'} eq $Lang::tr{'wio_import'}.'3' ) {
598 open(FILE, "< $dhcpfile" ); }
599elsif ( $wioscan eq 'on' ) {
600
601 foreach (keys(%ifacecolor)) {
602 if ( $netsettings{"${_}_DEV"} eq $wiosettings{'ID'} ) {
603 $dev = $netsettings{"${_}_DEV"};
604 $iprange = $wiosettings{"${_}_IPLOW"} . "-" . $wiosettings{"${_}_IPHIGH"};
605
606 if ( $_ eq 'GREEN' ) { $color = "$Header::colourgreen"; $net = $Lang::tr{'wio_msg_green'}; }
607 elsif ( $_ eq 'BLUE' ) { $color = "$Header::colourblue"; $net = $Lang::tr{'wio_msg_blue'}; }
391a2459 608 elsif ( $_ eq 'RED' ) { $color = "$Header::colourred"; $net = $Lang::tr{'wio_msg_red'}; }
0d6cc79d
SF
609 else { $color = "$Header::colourorange"; $net = $Lang::tr{'wio_msg_orange'}; }
610 }
611 }
612
613&Header::openbox('100%', 'left', $Lang::tr{'wio_info'});
614 print"<table width='100%'>
391a2459 615 <tr><td align='center'><font class='base'>$Lang::tr{'wio_msg_left'} </font><font class='base' color='$color'><b>$net</b></font> $Lang::tr{'wio_msg_center'} <font class='base'> $Lang::tr{'wio_msg_right'} $Lang::tr{'wio_msg_hint'}</font></td></tr>
0d6cc79d
SF
616 <tr><td>&nbsp;</td></tr>
617 <tr><td align='center'><img align='middle' src='/images/indicator.gif' /></td></tr>
618 </table>";
619&Header::closebox();
620&Header::closebigbox();
621
622 open(FILE, "/usr/local/bin/wioscan -wsa $dev $iprange |" );
623
624}
625
626@hosts = <FILE>;
627close(FILE);
628
629if ( $wioscan ne 'on' && ! -e $wiofile ) { @hosts = sort @hosts; }
630else {
631 open(FILE, "> $wiofile");
632 print FILE @hosts;
633 close(FILE);
634
635 print"<meta http-equiv=\"refresh\" content=\"0; URL=$ENV{'SCRIPT_NAME'}\">";
636 exit 0;
637}
638
639WIOSCAN:
640
641if ( -e $wiofile ) {
642 open(FILE, "< $wiofile");
643 @hosts = <FILE>;
644 close (FILE);
645
646 &General::readhash($wiosettings, \%wiosettings);
647
648 &Header::showhttpheaders();
649 &Header::openpage($Lang::tr{'wio'}, 1, '');
650 &Header::openbigbox('100%', 'left');
651}
652
653foreach (@hosts) {
654 chomp;
655
656 @line = split (/\,/, $_);
657
658 if ( -e $editfile || -e $importfile ) {
659 $wiosettings{'CLIENTID$count'} = $line[0];
660 $wiosettings{'TIMESTAMP$count'} = $line[1];
661 $wiosettings{'IPADR$count'} = $line[2];
662 $wiosettings{'HOST$count'} = $line[3];
663 $wiosettings{'EN$count'} = $line[4];
664 $wiosettings{'REMARK$count'} = $line[5];
665 $wiosettings{'DYNDNS$count'} = $line[6];
666 $wiosettings{'SENDEMAILON$count'} = $line[7];
667 $wiosettings{'SENDEMAILOFF$count'} = $line[8];
668 $wiosettings{'PINGMETHODE$count'} = $line[9];
669 $wiosettings{'ONLINE$count'} = $line[10];
670 $wiosettings{'WEBINTERFACE$count'} = $line[11];
671 $wiosettings{'USE$count'} = 'on';
672 }
673 else {
674 $wiosettings{'IPADR$count'} = $line[1];
675 $wiosettings{'EN$count'} = 'on';
676 $wiosettings{'PINGMETHODE$count'} = 'ip';
677 $wiosettings{'USE$count'} = 'on';
678
679 if ( $wiosettings{'ACTION'} eq $Lang::tr{'wio_import'}.'2' ) {
680 $wiosettings{'HOST$count'} = $line[2];
681 $wiosettings{'DOM$count'} = $line[3];
682 $wiosettings{'REMARK$count'} = '';
683 }
684 elsif ( $wioscan eq 'on' || -e $wiofile ) {
685 $wiosettings{'HOST$count'} = gethostbyaddr(inet_aton($line[1]), AF_INET);
686 if ($wiosettings{'HOST$count'} eq '') { $wiosettings{'HOST$count'} = $line[1]; }
687 $wiosettings{'REMARK$count'} = '';
0d6cc79d
SF
688 }
689 else {
690 $wiosettings{'HOST$count'} = $line[7];
691 $wiosettings{'REMARK$count'} = $line[6];
692 }
693 }
694
695 $checked{'EN$count'}{'on'} = ($wiosettings{'EN$count'} eq '' ) ? '' : "checked='checked'";
696
697 $checked{'DYNDNS$count'}{'on'} = ($wiosettings{'DYNDNS$count'} eq '' ) ? '' : "checked='checked'";
698 $checked{'SENDEMAILON$count'}{'on'} = ($wiosettings{'SENDEMAILON$count'} eq '' ) ? '' : "checked='checked'";
699 $checked{'SENDEMAILOFF$count'}{'on'} = ($wiosettings{'SENDEMAILOFF$count'} eq '' ) ? '' : "checked='checked'";
700
701 $checked{'PINGMETHODE$count'}{'ip'} = $checked{'PINGMETHODE$count'}{'fqdn'} = '';
702 $checked{'PINGMETHODE$count'}{$wiosettings{'PINGMETHODE$count'}} = "checked='checked'";
703
704 $checked{'USE$count'}{'on'} = ($wiosettings{'USE$count'} eq '' ) ? '' : "checked='checked'";
705
706 $selected{'WEBINTERFACE$count'}{'----'} = '';
707 $selected{'WEBINTERFACE$count'}{'HTTP'} = '';
708 $selected{'WEBINTERFACE$count'}{'HTTPS'} = '';
709 $selected{'WEBINTERFACE$count'}{$wiosettings{'WEBINTERFACE$count'}} = "selected='selected'";
710
711if (! &WIO::checkinto($wiosettings{'IPADR$count'}, $wiosettings{'HOST$count'}, @current) ) {
712
713if ( $importmessage ) {
714 &Header::openbox('100%', 'left', "$Lang::tr{'wio_import_data'}'$wiosettings{'HOST$count'}'$Lang::tr{'wio_import_data1'}");
715}
716elsif ( $wiosettings{'ACTION'} eq $Lang::tr{'wio_import'}.'1' || $wioscan eq 'on' || -e $wiofile || -e $editfile ) {
717 &Header::openbox('100%', 'left', "$Lang::tr{'wio_import_data'}'$wiosettings{'HOST$count'}'$Lang::tr{'wio_import_data2'}");
718}
719elsif ( $wiosettings{'ACTION'} eq $Lang::tr{'wio_import'}.'2' ) {
720 &Header::openbox('100%', 'left', "$Lang::tr{'wio_import_data'}'$wiosettings{'HOST$count'}.$wiosettings{'DOM$count'}'$Lang::tr{'wio_import_data2'}");
721}
722else {
723 &Header::openbox('100%', 'left', $Lang::tr{'wio_import_leases'});
724}
725
726print"
727<form method='post' action='$ENV{'SCRIPT_NAME'}' enctype='multipart/form-data'>
728<input type='hidden' name='ONLINE$count' value='$wiosettings{'ONLINE$count'}' />
729
730<table width='100%'>
731<tr>
732 <td>$Lang::tr{'wio_use'}</td>
733 <td><input type='checkbox' name='USE$count' $checked{'USE$count'}{'on'} /></td>
734</tr>
735<tr>
736 <td>$Lang::tr{'wio_client_enable'}</td>
737 <td><input type='checkbox' name='EN$count' $checked{'EN$count'}{'on'} /></td>
738</tr>
739<tr>
740 <td>$Lang::tr{'host ip'}:</td>
741 <td><input type='text' name='IPADR$count' value='$wiosettings{'IPADR$count'}' size='18' /></td>
742 <td>$Lang::tr{'hostname'}:</td>
743";
744
745if ( $wiosettings{'ACTION'} eq $Lang::tr{'wio_import'}.'2' ) {
746 print"<td><input type='text' name='HOST$count' size='18' value='$wiosettings{'HOST$count'}.$wiosettings{'DOM$count'}' /></td>";
747}
748else {
749 print"<td><input type='text' name='HOST$count' size='18' value='$wiosettings{'HOST$count'}' /></td>";
750}
751
752print"
753 <td>$Lang::tr{'remark'}:</td>
754 <td><input type='text' name='REMARK$count' value='$wiosettings{'REMARK$count'}' size='18' /></td>
755</tr>
756<tr>
757 <td class='base'>$Lang::tr{'wio_ping_send'}:</td>
758 <td align='left'><input type='radio' name='PINGMETHODE$count' value='ip' $checked{'PINGMETHODE$count'}{'ip'} />&nbsp;IP&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type='radio' name='PINGMETHODE$count' value='fqdn' $checked{'PINGMETHODE$count'}{'fqdn'} />&nbsp;FQDN</td>
759 <td>$Lang::tr{'wio_dyndns'}:</td>
760 <td><input type='checkbox' name='DYNDNS$count' $checked{'DYNDNS$count'}{'on'} /></td>
761";
762
763if ( $wiosettings{'SENDEMAIL'} eq 'on' ) {
764 print"<td>$Lang::tr{'wio_sendemail'}:</td>
765 <td><input type='checkbox' name='SENDEMAILON$count' $checked{'SENDEMAILON$count'}{'on'} />&nbsp;$Lang::tr{'wio_online'}&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type='checkbox' name='SENDEMAILOFF$count' $checked{'SENDEMAILOFF$count'}{'on'} />&nbsp;$Lang::tr{'wio_offline'}</td>";
766}
767else {
768 print"<td colspan='2'>&nbsp;</td>";
769}
770
771print"
772</tr>
773<tr>
1bee37ba 774 <td height='30'>$Lang::tr{'wio_link_open'}:</td>
0d6cc79d
SF
775 <td align='left' colspan='5'>
776 <select size='1' name='WEBINTERFACE$count' width='80' style='width: 80px'>
777 <option value='----' $selected{'WEBINTERFACE$count'}{'----'}>----</option>
778 <option value='HTTP' $selected{'WEBINTERFACE$count'}{'HTTP'}>HTTP</option>
779 <option value='HTTPS' $selected{'WEBINTERFACE$count'}{'HTTPS'}>HTTPS</option>
780 </select>
781 </td>
782</tr>
783</table>
784";
785
786&Header::closebox();
787$showcount++;
788}
789$count++;
790}
791
792if ( $showcount gt 0 ) {
793&Header::openbox('100%', 'left', $Lang::tr{'wio_import_infos'});
794
795print"
796<table width='100%'>
797<tr>
798";
799
800if ($importmessage) { print"<td>&nbsp;</td>"; }
801else { print"<td><font color='$color{'color11'}'>$Lang::tr{'wio_import_infos_csv'}</font></td>"; }
802
803print"
804</tr>
805<tr><td colspan='4'>&nbsp;</td></tr>
806</table>
807<table width='100%'>
808<tr>
809 <td width='25%'>&nbsp;</td>
810 <td width='25%'><input type='hidden' name='COUNT' value='$count' /><input type='hidden' name='ACTION' value='$Lang::tr{'wio_save'}2' /><input type='submit' name='SUBMIT' value='$Lang::tr{'wio_save'}' /></form></td>
811 <td width='25%'><form method='post' action='$ENV{'SCRIPT_NAME'}' enctype='multipart/form-data'><input type='submit' name='ACTION' value='$Lang::tr{'wio_back'}' /></form></td>
812 <td width='25%'>&nbsp;</td>
813</tr>
814</table>
815";
816
817&Header::closebox();
818&Header::closebigbox();
819&Header::closepage();
820}
821else {
822 print"<meta http-equiv=\"refresh\" content=\"0; URL=$ENV{'SCRIPT_NAME'}?INFO\">";
823}
824
825if ( -e "$editfile" ) { unlink ($editfile); }
826if ( -e "$wiofile" ) { unlink($wiofile); }
827exit 0;
828}
829else {
830 $infomessage = "$Lang::tr{'wio_error_function'}";
831}
832}
833
834## skript function
835
836if ($ENV{'QUERY_STRING'} =~ /$sortstring/ ) {
837 my $string = $ENV{'QUERY_STRING'};
838
839 if ( $string eq 'INFO' ) {
840 $infomessage = $Lang::tr{'wio_import_info_csv'};
841 }
842 else {
843 &General::readhash($wiosettings, \%wiosettings);
844
845 my $actual = $wiosettings{'SORT'};
846
847 if ($actual =~ $string) {
848 my $Rev = '';
849 if ($actual !~ 'Rev') { $Rev = 'Rev'; }
850 $string.=$Rev;
851 }
852
853 system("/bin/sed -i 's#$wiosettings{'SORT'}#$string#g' $wiosettings");
854
855 $wiosettings{'SORT'} = $string;
856 map ($wiosettings{$_} = '' ,@nosaved);
857 &SortDataFile('',@current);
858 }
859}
860
861## main part
862
863ERROR:
864
865unless($message == 1) { &General::readhash($wiosettings, \%wiosettings); }
866
867for ($i=5; $i<=60; $i+=5) { $selected{'CRON'}{$i} = ''; }
868
869$selected{'CRON'}{$wiosettings{'CRON'}} = "selected='selected'";
870
871for ($i=1; $i<=15; $i++) {
872 $selected{'TIMEOUT'}{$i} = '';
873 $selected{'OVPNCRON'}{$i} = '';
874}
875
876$selected{'TIMEOUT'}{$wiosettings{'TIMEOUT'}} = "selected='selected'";
877$selected{'OVPNCRON'}{$wiosettings{'OVPNCRON'}} = "selected='selected'";
878
879$checked{'ENABLE'}{'off'} = $checked{'ENABLE'}{'on'} = '';
880$checked{'ENABLE'}{$wiosettings{'ENABLE'}} = "checked='checked'";
881
882$checked{'LOGGING'}{'off'} = $checked{'LOGGING'}{'on'} = '';
883$checked{'LOGGING'}{$wiosettings{'LOGGING'}} = "checked='checked'";
884
885$checked{'CLIENTREMARK'}{'off'} = $checked{'CLIENTREMARK'}{'on'} = '';
886$checked{'CLIENTREMARK'}{$wiosettings{'CLIENTREMARK'}} = "checked='checked'";
887
888$checked{'MAILREMARK'}{'off'} = $checked{'MAILREMARK'}{'on'} = '';
889$checked{'MAILREMARK'}{$wiosettings{'MAILREMARK'}} = "checked='checked'";
890
891$checked{'OVPNRWMAIL'}{'off'} = $checked{'OVPNRWMAIL'}{'on'} = '';
892$checked{'OVPNRWMAIL'}{$wiosettings{'OVPNRWMAIL'}} = "checked='checked'";
893
0d6cc79d
SF
894$checked{'MAILSTYLE'}{'smail'} = $checked{'MAILSTYLE'}{'email'} = '';
895$checked{'MAILSTYLE'}{$wiosettings{'MAILSTYLE'}} = "checked='checked'";
896
897&Header::showhttpheaders();
898&Header::openpage($Lang::tr{'wio'}, 1, "<meta http-equiv='expires' content='-1'><meta http-equiv='cache-control' content='no-store, no-cache, must-revalidate'><meta http-equiv='pragma' content='no-cache'>");
899&Header::openbigbox('100%', 'left', '');
900
901## DEBUG / ERROR / INFO / UPDATE
902
903if ( $debug ) {
904 &Header::openbox('100%', 'left', 'DEBUG', 'warning');
905
906 print"errormessage: $errormessage<br />\n";
907 print"infomessage: $infomessage<br />\n";
908
909 &hrline();
a25c95b3 910
0d6cc79d
SF
911 my $wiodebug = 0;
912 foreach (sort keys %wiosettings) {
913 print"$_ = $wiosettings{$_}<br />\n";
914 $wiodebug++;
915 }
916
917 &hrline();
918
919 my $netdebug = 0;
920 foreach (sort keys %netsettings) {
921 print"$_ = $netsettings{$_}<br />\n";
922 $netdebug++;
923 }
924 &Header::closebox();
925}
926
927if ( $errormessage ) {
928 &Header::openbox('100%', 'left', $Lang::tr{'wio_error'}, 'error');
929 print"<table width='100%'><tr><td><font class='base'><b>$errormessage</b></font></td></tr></table>";
930 &Header::closebox();
931}
932
933if ( $infomessage ) {
934 &Header::openbox('100%', 'left', $Lang::tr{'wio_info'}, 'warning');
935 print"<table width='100%'><tr><td><font class='base'><b>$infomessage</b></font></td></tr></table>";
936 &Header::closebox();
937}
938
939## wio configuration
940
941if ( $wiosettings{'ACTION'} eq $Lang::tr{'edit'}.'1' || $message == 1 || $wiosettings{'ENABLE'} eq 'off' ) {
942
943&Header::openbox('100%', 'left', $Lang::tr{'wio settings'});
944
945print"
946<form method='post' action='$ENV{'SCRIPT_NAME'}' enctype='multipart/form-data'>
947<table width='100%'>
948<tr>
391a2459
SF
949 <td bgcolor='$color{'color20'}' align='left'><b>$Lang::tr{'wio_settings_msg_hint'}</b></td>
950 <td colspan='2'>&nbsp;</td>
0d6cc79d 951</tr>
0d6cc79d 952<tr>
391a2459
SF
953 <td width='48%'>&nbsp;</td>
954 <td width='2%'>&nbsp;</td>
955 <td width='50%'>&nbsp;</td>
0d6cc79d 956</tr>
0d6cc79d
SF
957<tr>
958 <td align='right'>$Lang::tr{'wio enabled'}</td>
959";
960
961print"<td>&nbsp;</td>";
962
963if ( $wiosettings{'ENABLE'} eq 'on' ) {
964 print"<td align='left'><input type='checkbox' onClick=\"return confirm('$Lang::tr{'wio_disable_hint'}')\" name='ENABLE' $checked{'ENABLE'}{'on'} /></td>";
965}
966else {
967 print"<td align='left'><input type='checkbox' name='ENABLE' $checked{'ENABLE'}{'on'} /></td>";
968}
969print"
970</tr>
971<tr><td colspan='3'>&nbsp;</td></tr>
0d6cc79d
SF
972<tr>
973 <td align='right'>$Lang::tr{'wio cron'}</td>
974 <td>&nbsp;</td>
975 <td align='left'><select size='1' name='CRON' size='5'>
976";
977
fe6f676b
SF
978for ($i=5; $i<=60; $i+=5) {
979 $_ = sprintf("%02s",$i);
980 print "<option $selected{'CRON'}{$_}>$_</option>\n";
981}
0d6cc79d
SF
982
983print"
984 </select>&nbsp;$Lang::tr{'wio min'}</td>
985</tr>
986<tr><td colspan='3'>&nbsp;</td></tr>
987<tr>
988 <td align='right'>$Lang::tr{'wio timeout'}</td>
989 <td>&nbsp;</td>
990 <td align='left'><select size='1' name='TIMEOUT' size='5'>
991";
992
fe6f676b
SF
993for ($i=1; $i<=15; $i++) {
994 $_ = sprintf("%02s",$i);
995 print "<option $selected{'TIMEOUT'}{$_}>$_</option>\n";
996}
0d6cc79d 997
c1fc92a9 998print"
0d6cc79d
SF
999 </select>&nbsp;$Lang::tr{'wio sec'}</td>
1000</tr>
1001<tr><td colspan='3'>&nbsp;</td></tr>
1002<tr>
1003 <td align='right'>$Lang::tr{'wio_logging'}</td>
1004 <td>&nbsp;</td>
1005 <td align='left'><input type='checkbox' name='LOGGING' $checked{'LOGGING'}{'on'} /></td>
1006</tr>
1007<tr><td colspan='3'>&nbsp;</td></tr>
1008<tr>
1009 <td align='right'>$Lang::tr{'wio_clientremark'}</td>
1010 <td>&nbsp;</td>
1011 <td align='left'><input type='checkbox' name='CLIENTREMARK' $checked{'CLIENTREMARK'}{'on'} /></td>
1012</tr>
1013<tr><td colspan='3'>&nbsp;</td></tr>
0d6cc79d
SF
1014";
1015
1016if ( $wiosettings{'SENDEMAIL'} eq 'on' ) {
1017print"
1018<tr>
1019 <td align='right'>$Lang::tr{'wio_mail_style'}:</td>
1020 <td>&nbsp;</td>
1021 <td align='left'><input type='radio' name='MAILSTYLE' value='smail' $checked{'MAILSTYLE'}{'smail'} />&nbsp;$Lang::tr{'wio_mail_smail'}&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type='radio' name='MAILSTYLE' value='email' $checked{'MAILSTYLE'}{'email'} />&nbsp;$Lang::tr{'wio_mail_email'}</td>
1022</tr>
1023<tr><td colspan='3'>&nbsp;</td></tr>
1024<tr>
1025 <td align='right'>$Lang::tr{'wio_mailremark_enabled'}</td>
1026 <td>&nbsp;</td>
1027 <td align='left'><input type='checkbox' name='MAILREMARK' $checked{'MAILREMARK'}{'on'}></td>
1028</tr>
1029<tr><td colspan='3'>&nbsp;</td></tr>
1030";
1031}
1032if ( -e "$ovpnaddon" || ! -z "/var/ipfire/vpn/config" ) {
1033print"
1034<tr>
1035 <td align='right'>$Lang::tr{'wio_mail_ovpnrw'}</td>
1036 <td>&nbsp;</td>
1037 <td align='left'><input type='checkbox' name='OVPNRWMAIL' $checked{'OVPNRWMAIL'}{'on'}></td>
1038</tr>
1039<tr><td colspan='3'>&nbsp;</td></tr>
1040<tr>
1041 <td align='right'>$Lang::tr{'wio_ovpn_cron'}</td>
1042 <td>&nbsp;</td>
1043 <td align='left'><select size='1' name='OVPNCRON' size='5'>
1044";
1045
fe6f676b
SF
1046for ($i=1; $i<=15; $i++) {
1047 $_ = sprintf("%02s",$i);
1048 print "<option $selected{'OVPNCRON'}{$_}>$_</option>\n";
1049}
0d6cc79d
SF
1050
1051print"
1052 </select>&nbsp;$Lang::tr{'wio min'}</td>
1053</tr>
1054<tr><td colspan='3'>&nbsp;</td></tr>
1055";
1056}
1057print"
1058<tr><td colspan='3'>&nbsp;</td></tr>
1059<tr>
1060 <td colspan='2'>&nbsp;</td>
1061 <td align='left'><input type='hidden' name='ACTION' value='$Lang::tr{'wio_save'}1' /><input type='submit' name='submit' value='$Lang::tr{'wio_save'}' />"
1062 .($wiosettings{'ENABLE'} ne 'off' ? "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type='button' onClick='location.href=\"/cgi-bin/wio.cgi\"' value='$Lang::tr{'wio_back'}'>" : "")
1063 ."</td>
1064</tr>
1065</table>
1066</form>
1067";
1068
1069&Header::closebox();
1070&Header::closebigbox();
1071&Header::closepage();
1072exit 0;
1073}
1074
1075## wio client status
1076
1077if ( $wiosettings{'ENABLE'} eq 'on') {
1078 if ( !$errormessage && $wiosettings{'ACTION'} ne $Lang::tr{'edit'} || $message == 2 ) {
1079 &Header::openbox('100%', 'left', $Lang::tr{'wio stat'});
1080
1081 foreach (@current) {
1082 chomp;
1083
1084 ($id,$timestamp,$ipadr,$host,$on,$remark,$dyndns,$sendemailon,$sendemailoff,$pingmethode,$online,$webinterface) = split (/\,/, $_);
1085
1086 if ( defined($dyndns) && ( $dyndns =~ 'on' ) ) {
1087 ($dyndnsip, $infomessage) = &WIO::getdyndnsip($ipadr, $host);
1088
1089 if ( $dyndnsip ne $ipadr ) {
1090 $ipadr = $dyndnsip;
1091 $write = 'on';
1092 }
1093 }
1094
1095 push (@id,($id));
1096
1097 if ( $on eq 'on' ) { push (@dates,($timestamp)); }
1098 else { push (@dates,('-')); }
1099
1100 push (@ipaddresses,($ipadr));
1101 push (@names,($host));
1102 push (@activ,($on));
1103 push (@remark,($remark));
1104 push (@dyndns,($dyndns));
1105 push (@sendemailon,($sendemailon));
1106 push (@sendemailoff,($sendemailoff));
1107 push (@pingmethode,($pingmethode));
1108 push (@status,($online));
1109 push (@webinterface,($webinterface));
1110
1111 push (@write, "$id,$timestamp,$ipadr,$host,$on,$remark,$dyndns,$sendemailon,$sendemailoff,$pingmethode,$online,$webinterface\n");
1112
1113 $nr++;
1114 }
1115
1116 if ( defined($write) ) { &writeips(); }
1117
1118## wan connection
1119
1120print"
1121<table border='0' width='100%' bordercolor='$Header::bordercolour' cellspacing='0' cellpadding='0' style='border-collapse: collapse'>
a25c95b3
SFD
1122<tr height='25'>
1123 <td width='33%' bgcolor='$color{'color20'}' align='left'><b>&nbsp;$Lang::tr{'wio_wan_con'}</b></td>
1124 <td width='67%' align='right'>&nbsp;</td>
0d6cc79d
SF
1125</tr>
1126<tr><td colspan='2'>&nbsp;</td></tr>
1127</table>
1128
1129<table border='0' width='100%' bordercolor='$Header::bordercolour' cellspacing='0' cellpadding='0' style='border-collapse: collapse'>
1130<tr bgcolor='$color{'color20'}' height='20'>
1131 <td width='3%' align='center'><b>$Lang::tr{'wio_id'}</b></td>
1132 <td width='15%' align='center'><b>$Lang::tr{'wio ipadress'}</b></td>
391a2459 1133 <td width='7%' align='center'><b>$Lang::tr{'wio network'}</b></td>
0d6cc79d
SF
1134 <td width='15%' align='center'><b>$Lang::tr{'wio_lanname'}</b></td>
1135 <td width='15%' align='center'><b>$Lang::tr{'wio_wanname'}</b></td>
391a2459 1136 <td width='20%' align='center'><b>$Lang::tr{'wio_dyndns_hosts'}</b></td>
0d6cc79d 1137 <td width='11%' align='center'><b>$Lang::tr{'wio image'}</b></td>
c1fc92a9 1138 <td width='14%' align='center'><b>$Lang::tr{'wio_connected'}</b></td>
0d6cc79d
SF
1139</tr>
1140<tr bgcolor='$color{'color22'}' height='20'>
1141 <td align='center'>01</td>
391a2459 1142 <td align='center'><font color='$Header::colourred'>$redip</font></td>
0d6cc79d
SF
1143 <td align='center'><img align='middle' src='$imgstatic/red.png' alt='$Lang::tr{'internet'}' title='$Lang::tr{'internet'}' /></td>
1144 <td align='center'><font color='$Header::colourgreen'>".$mainsettings{'HOSTNAME'}.".".$mainsettings{'DOMAINNAME'}."</font></td>
1145 <td align='center'><font color='$Header::colourred'>".( $redip ne '-' ? (gethostbyaddr(pack("C4", split (/\./, $redip)), 2))[0] : '-' )."</font></td>
1146 <td align='center'>
1147";
1148
1149if ( -s "$dyndnsconfig" ) {
1150
1151open(FILE, "< $dyndnsconfig");
1152@ddns = <FILE>;
1153close (FILE);
1154
0d6cc79d
SF
1155 foreach (@ddns) {
1156 chomp;
48aae162 1157
0d6cc79d
SF
1158 @temp = split (/\,/, $_);
1159
391a2459
SF
1160 if ( $temp[7] eq "on" ) {
1161 $bgcolor = ( &General::DyndnsServiceSync (&General::GetDyndnsRedIP,$temp[1],$temp[2]) ? "$Header::colourgreen" : "$Header::colourred" );
1162 }
1163 else {
1164 $bgcolor = "blue";
1165 }
48aae162 1166
0d6cc79d 1167 print"<font color='$bgcolor'>$temp[1].$temp[2]</font>";
391a2459 1168 if ( $iddyndns++ ne (@ddns-1) ) { print"<br />\n"; }
0d6cc79d
SF
1169 }
1170}
391a2459
SF
1171else {
1172 print"-";
1173}
0d6cc79d
SF
1174
1175print"
1176 </td>
1177 <td align='center'>
1178 <table bgcolor='".( -e $redactive ? "${Header::colourgreen}" : "${Header::colourred}" )."' cellpadding='2' cellspacing='0' width='100%'>
1179 <tr height='20'>
1180 <td align='center'><font color='white'><b>".( -e $redactive ? $Lang::tr{'wio_wan_up'} : $Lang::tr{'wio_wan_down'} )."</b></font></td>
1181 </tr>
1182 </table>
1183 </td>
1184 <td align='center'><font color='$Header::colourred'>".( -e "$redactive" ? &General::age("$redactive") : '-' )."</font></td>
1185</tr>
1186<tr height='1'><td colspan='9' bgcolor='#696565'></td></tr>
1187</table>
1188";
1189
1190&hrline();
1191
1192## vpn connection(s)
1193
1194if ( -e "$vpnpid" ) {
1195
1196@vpnstatus = `/usr/local/bin/ipsecctrl I`;
1197
1198print"
1199<table border='0' width='100%' bordercolor='$Header::bordercolour' cellspacing='0' cellpadding='0' style='border-collapse: collapse'>
a25c95b3
SFD
1200<tr height='25'>
1201 <td width='33%' bgcolor='$color{'color20'}' align='left'><b>&nbsp;$Lang::tr{'wio_vpn_con'}</b></td>
1202 <td width='67%'>&nbsp;</td>
0d6cc79d
SF
1203</tr>
1204<tr><td colspan='2'>&nbsp;</td></tr>
1205</table>
1206<table border='0' width='100%' bordercolor='$Header::bordercolour' cellspacing='0' cellpadding='0' style='border-collapse: collapse'>
1207<tr bgcolor='$color{'color20'}' height='20'>
1208 <td width='3%' align='center'><b>$Lang::tr{'wio_id'}</b></td>
1209 <td width='19%' align='center'><b>$Lang::tr{'wio checked'}</b></td>
1210 <td width='20%' align='center'><b>$Lang::tr{'name'}</b></td>
1211 <td width='8%' align='center'><b>$Lang::tr{'type'}</b></td>
1212 <td width='25%' align='center'><b>$Lang::tr{'wio_common_name'}</b></td>
1213 <td width='11%' align='center'><b>$Lang::tr{'wio image'}</b></td>
c1fc92a9 1214 <td width='14%' align='center'><b>$Lang::tr{'wio_connected'}</b></td>
0d6cc79d
SF
1215</tr>
1216";
1217
1218foreach $key (sort SortByTunnelName (keys(%vpnconfighash))) {
1219
391a2459 1220my ( $vpnclient, $vpnclientip, $vpnrwnet, $vpnn2nnet, $vpntime, $vpncheck ) = '';
0d6cc79d
SF
1221
1222$status = "bgcolor='${Header::colourred}'";
1223$statustxt = "$Lang::tr{'capsclosed'}";
953882ff 1224$vpnclient = $vpnconfighash{$key}[1];
0d6cc79d 1225
391a2459
SF
1226my ($ip,$sub) = split(/\//,$vpnsettings{'RW_NET'});
1227my @ip = split( /\./, $ip);
1228$vpnrwnet = join( '.', ( $ip[0], $ip[1], $ip[2], ) );
1229
0d6cc79d
SF
1230 if ($vpnconfighash{$key}[0] eq 'off') {
1231 $status = "bgcolor='${Header::colourblue}'";
1232 $statustxt = "$Lang::tr{'capsclosed'}";
391a2459
SF
1233 $vpnn2nnet = '-';
1234 }
1235 else {
1236 $vpnn2nnet = $vpnconfighash{$key}[11];
0d6cc79d
SF
1237 }
1238
1239 foreach (@vpnstatus) {
953882ff 1240 if ($_ =~ /$vpnclient.*ESTABLISHED/) {
0d6cc79d
SF
1241 $status = "bgcolor='${Header::colourgreen}'";
1242 $statustxt = "$Lang::tr{'capsopen'}";
953882ff
SF
1243 $vpntime = `/usr/local/bin/ipsecctrl I | grep $vpnclient.*ESTABLISHED | sed 's/^[ \t]*//' | cut -d " " -f 3-4`;
1244 $vpntime = &WIO::contime($vpntime, "ipsec");
391a2459
SF
1245 $vpnclientip = `/usr/local/bin/ipsecctrl I | grep $vpnclient.*$vpnrwnet | sed 's/^[ \t]*//' | cut -d " " -f 6 | cut -d "/" -f 1`;
1246 $vpncheck = strftime("%d.%m.%Y - %H:%M:%S",localtime);
0d6cc79d
SF
1247 last;
1248 }
1249 }
1250
1251 print"<tr".($idvpn % 2?" bgcolor='$color{'color20'}'":" bgcolor='$color{'color22'}'")." height='20'>";
1252
1253 my $vpnnr = $idvpn+1;
1254
953882ff 1255 printf ("<td align='center'>%02d</td>", $vpnnr);
0d6cc79d 1256
391a2459 1257 print"<td align='center'>".($vpncheck ne '' ? "$vpncheck" : "-")."</td>
953882ff
SF
1258 <td align='center'>$vpnclient</td>
1259 <td align='center'><img align='middle' src='$imgstatic/".($vpnconfighash{$key}[3] eq 'host' ? "vpnrw.png' alt='$Lang::tr{'wio_rw'}' title='$Lang::tr{'wio_rw'}'" : "vpnn2n.png' alt='$Lang::tr{'wio_n2n'}' title='$Lang::tr{'wio_n2n'}'")." /></td>
391a2459 1260 <td align='center'>".($vpnconfighash{$key}[3] eq 'host' ? (defined($vpnclientip) ? "$vpnclientip" : "-") : $vpnconfighash{$key}[3] eq 'net' ? "$vpnn2nnet" : "-")."</td>
0d6cc79d
SF
1261 <td align='center'>
1262 <table $status cellpadding='2' cellspacing='0' width='100%'>
1263 <tr height='20'>
1264 <td align='center'><font color='white'><b>$statustxt</b></font></td>
1265 </tr>
1266 </table>
1267 </td>
391a2459 1268 <td align='center' height='20'>".($vpntime ne '' ? "$vpntime" : "-")."</td>
0d6cc79d
SF
1269 </tr>
1270";
c1fc92a9 1271
391a2459
SF
1272if ($wiosettings{'CLIENTREMARK'} eq 'on') {
1273 print"<tr".($idvpn % 2?" bgcolor='$color{'color20'}'":" bgcolor='$color{'color22'}'")." height='20'><td>&nbsp;</td><td colspan='16' align='left'>".($vpnconfighash{$key}[25] ne '' ? "$vpnconfighash{$key}[25]" : "-")."</td></tr>";
0d6cc79d 1274}
391a2459
SF
1275
1276print"<tr height='1'><td colspan='7' bgcolor='#696565'></td></tr>";
1277$idvpn++
0d6cc79d
SF
1278}
1279
1280print"</table>";
1281&hrline();
1282}
1283
1284## openvpn connection(s)
1285
1286if ( -e "$ovpnpid" ) {
1287
1288@ovpnstatus = `cat /var/run/ovpnserver.log`;
1289
1290print"
1291<table border='0' width='100%' bordercolor='$Header::bordercolour' cellspacing='0' cellpadding='0' style='border-collapse: collapse'>
a25c95b3
SFD
1292<tr height='25'>
1293 <td width='33%' bgcolor='$color{'color20'}' align='left'><b>&nbsp;$Lang::tr{'wio_ovpn_con'}</b></td>
1294 <td width='67%'>&nbsp;</td>
0d6cc79d
SF
1295</tr>
1296<tr><td colspan='2'>&nbsp;</td></tr>
1297</table>
1298<table border='0' width='100%' bordercolor='$Header::bordercolour' cellspacing='0' cellpadding='0' style='border-collapse: collapse'>
1299<tr bgcolor='$color{'color20'}' height='20'>
1300 <td width='3%' align='center'><b>$Lang::tr{'wio_id'}</b></td>
1301 <td width='19%' align='center'><b>$Lang::tr{'wio checked'}</b></td>
391a2459 1302 <td width='20%' align='center'><b>$Lang::tr{'name'}</b></td>
0d6cc79d 1303 <td width='8%' align='center'><b>$Lang::tr{'type'}</b></td>
391a2459 1304 <td width='25%' align='center'><b>$Lang::tr{'wio_common_name'}</b></td>
0d6cc79d 1305 <td width='11%' align='center'><b>$Lang::tr{'wio image'}</b></td>
c1fc92a9 1306 <td width='14%' align='center'><b>$Lang::tr{'wio_connected'}</b></td>
0d6cc79d
SF
1307</tr>
1308";
1309
391a2459 1310foreach $key (keys %ovpnconfighash) {
0d6cc79d 1311
391a2459 1312 my ( $ovpncheck, $ovpntime, $ovpnclt, $ovpnrwip ) = '';
0d6cc79d 1313
391a2459 1314 print"<tr".($idovpn % 2?" bgcolor='$color{'color20'}'":" bgcolor='$color{'color22'}'")." height='20'>";
0d6cc79d 1315
391a2459 1316 my $ovpnnr = $idovpn+1;
0d6cc79d 1317
391a2459 1318 printf ("<td align='center' height='20'> %02d</td>", $ovpnnr);
0d6cc79d 1319
391a2459
SF
1320 if ($ovpnconfighash{$key}[3] eq 'net') {
1321 $image = "$imgstatic/ovpnn2n.png";
1322 $text = "$Lang::tr{'wio_n2n'}";
1323 }
1324 else {
1325 $image = "$imgstatic/ovpnrw.png";
1326 $text = "$Lang::tr{'wio_rw'}";
1327 }
0d6cc79d 1328
391a2459
SF
1329 if ( $ovpnconfighash{$key}[0] eq 'off' ) {
1330 $status = "${Header::colourblue}";
1331 $statustxt = "$Lang::tr{'capsclosed'}";
1332 $ovpncheck = "-";
1333 }
1334 else {
0d6cc79d 1335 if ($ovpnconfighash{$key}[3] eq 'net') {
391a2459
SF
1336 if (-e "/var/run/$ovpnconfighash{$key}[1]n2n.pid") {
1337 my ( @output, @tustate ) = '';
1338 my $tport = $ovpnconfighash{$key}[22];
48aae162 1339 my $tnet = new Net::Telnet ( Timeout=>5, Errmode=>'return', Port=>$tport);
391a2459
SF
1340 if ($tport ne '') {
1341 $tnet->open('127.0.0.1');
1342 @output = $tnet->cmd(String => 'state', Prompt => '/(END.*\n|ERROR:.*\n)/');
1343 @tustate = split(/\,/, $output[1]);
1344 $ovpntime = &WIO::contime(scalar localtime($tustate[0]), "ovpn");
1345 $ovpncheck = strftime("%d.%m.%Y - %H:%M:%S", localtime);
1346
1347 if (($tustate[1] eq 'CONNECTED')) {
1348 $status = "${Header::colourgreen}";
1349 $statustxt = "$Lang::tr{'capsopen'}";
1350 $ovpnrwip = $ovpnconfighash{$key}[11];
1351 }
1352 else {
1353 $status = "${Header::colourred}";
1354 $statustxt = "$tustate[1]";
0d6cc79d
SF
1355 }
1356 }
1357 }
391a2459
SF
1358 }
1359 else {
1360 foreach (@ovpnstatus) {
1361 if ( $_ =~ /^(.+),(\d+\.\d+\.\d+\.\d+\:\d+),(\d+),(\d+),(.+)/ ) {
1362 @match = split (m/^(.+),(\d+\.\d+\.\d+\.\d+\:\d+),(\d+),(\d+),(.+)/, $_);
1363 $match[1] =~ s/[_]/ /g;
1364 }
0d6cc79d 1365
391a2459
SF
1366 if ( $match[1] ne "Common Name" && ($match[1] eq $ovpnconfighash{$key}[2]) ) {
1367 $ovpnclt = $match[1];
1368 $ovpntime = &WIO::contime($match[5], "ovpn");
1369 }
0d6cc79d 1370
391a2459
SF
1371 if ( $_ =~ /^(\d+\.\d+\.\d+\.\d+),(.+),(\d+\.\d+\.\d+\.\d+\:\d+),(.+)/ ) {
1372 @match = split(m/^(\d+\.\d+\.\d+\.\d+),(.+),(\d+\.\d+\.\d+\.\d+\:\d+),(.+)/, $_);
1373 }
0d6cc79d 1374
391a2459
SF
1375 if ( $match[1] ne "Virtual Address" && $match[2] eq $ovpnclt ) {
1376 $ovpnrwip = $match[1];
1377 $ovpncheck = &WIO::statustime($match[4]);
1378 }
0d6cc79d 1379
391a2459
SF
1380 if ( $ovpnclt eq $ovpnconfighash{$key}[2] ) {
1381 $status = "${Header::colourgreen}";
1382 $statustxt = "$Lang::tr{'capsopen'}";
1383 }
1384 else {
1385 $status = "${Header::colourred}";
1386 $statustxt = "$Lang::tr{'capsclosed'}";
0d6cc79d
SF
1387 }
1388 }
391a2459
SF
1389 }
1390 }
0d6cc79d 1391
391a2459
SF
1392print"
1393 <td align='center'>".(defined($ovpncheck) ? "$ovpncheck" : "-")."</td>
1394 <td align='center'>".($ovpnconfighash{$key}[2] eq '%auth-dn' ? "$ovpnconfighash{$key}[9]" : ($ovpnconfighash{$key}[4] eq 'cert' ? "$ovpnconfighash{$key}[1]": "-"))."</td>
0d6cc79d 1395 <td align='center'><img align='middle' src='$image' alt='$text' title='$text' /></td>
391a2459 1396 <td align='center'>".($ovpnrwip ne '' ? "$ovpnrwip" : "-")."</td>
0d6cc79d 1397 <td align='center'><table bgcolor='$status' cellpadding='2' cellspacing='0' width='100%'><tr height='20'><td align='center'><font color='white'><b>$statustxt</b></font></td></tr></table></td>
391a2459 1398 <td align='center'>".(defined($ovpntime) ? "$ovpntime" : "-")."</td>
0d6cc79d
SF
1399</tr>
1400";
c1fc92a9 1401
391a2459
SF
1402if ($wiosettings{'CLIENTREMARK'} eq 'on') {
1403 print"<tr".($idovpn % 2?" bgcolor='$color{'color20'}'":" bgcolor='$color{'color22'}'")." height='20'><td>&nbsp;</td><td colspan='16' align='left'>".($ovpnconfighash{$key}[25] ne '' ? "$ovpnconfighash{$key}[25]" : "-")."</td></tr>";
1404}
1405
1406print"<tr height='1'><td colspan='17' bgcolor='#696565'></td></tr>";
1407$idovpn++
1408}
1409
1410print"</table>";
1411&hrline();
0d6cc79d 1412}
0d6cc79d
SF
1413
1414## client status
1415
1416print"
1417<table border='0' width='100%' bordercolor='$Header::bordercolour' cellspacing='0' cellpadding='0' style='border-collapse: collapse'>
a25c95b3
SFD
1418<tr height='25'>
1419 <td width='33%' bgcolor='$color{'color20'}' align='left'><b>&nbsp;$Lang::tr{'wio_clients'}</b></td>
1420 <td width='67%'>&nbsp;</td>
0d6cc79d
SF
1421</tr>
1422<tr><td colspan='2'>&nbsp;</td></tr>
1423</table>
1424
1425<table border='0' width='100%' bordercolor='$Header::bordercolour' cellspacing='0' cellpadding='0' style='border-collapse: collapse'>
1426<tr bgcolor='$color{'color20'}' height='20'>
1427 <td width='3%' align='center'><b>$Lang::tr{'wio_id'}</b></td>
1428 <td width='4%' align='center'><b>$Lang::tr{'wio_activ'}</b></td>
1429 <td width='5%' align='center'><b>$Lang::tr{'wio_check'}</b></td>
1430 <td width='15%' align='center'><b>$Lang::tr{'wio checked'}</b></td>
1431 <td width='4%' align='center'><b>$Lang::tr{'wio_webinterface'}</b></td>
1432 <td width='11%' align='center'><a href='$ENV{'SCRIPT_NAME'}?IPADR'><b>$Lang::tr{'wio ipadress'}</b></a></td>
1433 <td width='5%' align='center'><b>$Lang::tr{'wio network'}</b></td>
391a2459
SF
1434 <td width='23%' align='center'><a href='$ENV{'SCRIPT_NAME'}?HOST'><b>$Lang::tr{'wio name'}</b></a></td>
1435 <td width='9%' align='center'><b>$Lang::tr{'wio image'}</b></td>
1436 <td width='3%' align='center'><form method='post' action='$ENV{'SCRIPT_NAME'}' enctype='multipart/form-data'><input type='hidden' name='ACTION' value='$Lang::tr{'wio_refresh'}' /><input type='image' name='$Lang::tr{'wio_refresh'}' src='$imgstatic/refresh.png' align='middle' alt='$Lang::tr{'wio_refresh'}' title='$Lang::tr{'wio_refresh'}' /></form></td>
0d6cc79d
SF
1437 <td width='4%' colspan='2' align='center'><b>$Lang::tr{'wio_dyndns'}</b></td>
1438 <td width='12%' colspan='4' align='center'><b>$Lang::tr{'action'}</b></td>
1439 <td width='3%' align='center'><form method='post' action='$ENV{'SCRIPT_NAME'}' enctype='multipart/form-data'><input type='hidden' name='ACTION' value='$Lang::tr{'wio_remove_all'}' /><input type='image' name='$Lang::tr{'wio_remove_all'}' src='/images/delete.gif' align='middle' alt='$Lang::tr{'wio_remove_all'}' title='$Lang::tr{'wio_remove_all'}' onClick=\"return confirm('$Lang::tr{'wio_remove_all_hint'}')\"/></form></td>
1440</tr>
1441";
1442
1443for (my $a=0; $a<$nr; $a++) {
1444
1445my $gif = 'off.gif';
1446my $gdesc = $Lang::tr{'wio_client_off'};
1447my $dyndnsimg = 'on.gif';
1448my $dyndnsimgtxt = $Lang::tr{'wio_dyndns_on'};
1449my $mailonimg = 'wio/mailgreenon.png';
1450my $mailonimgtxt = $Lang::tr{'wio_mail_online_on'};
1451my $mailoffimg = 'wio/mailredon.png';
1452my $mailoffimgtxt = $Lang::tr{'wio_mail_offline_on'};
1453my $pingimg = '';
1454my $pingtxt = '';
1455my $webimg = '';
1456
1457if ( $activ[$a] eq 'on' ) {
1458 $gif = 'on.gif';
1459 $gdesc = $Lang::tr{'wio_client_on'};
1460}
1461
1462if ( $dyndns[$a] ne 'on' ) {
1463 $dyndnsimg = 'off.gif';
1464 $dyndnsimgtxt = $Lang::tr{'wio_dyndns_off'};
1465}
1466
1467if ( $sendemailon[$a] ne 'on' ) {
1468 $mailonimg = 'wio/mailgreenoff.png';
1469 $mailonimgtxt = $Lang::tr{'wio_mail_online_off'};
1470}
1471
1472if ( $sendemailoff[$a] ne 'on' ) {
1473 $mailoffimg = 'wio/mailredoff.png';
1474 $mailoffimgtxt = $Lang::tr{'wio_mail_offline_off'};
1475}
1476
1477if ( $webinterface[$a] eq 'HTTP' ) {
1478 $webimg = 'wio/http.png';
1479}
1480elsif ( $webinterface[$a] eq 'HTTPS' ) {
1481 $webimg = 'wio/https.png';
1482}
1483else {
1484 $webimg = 'wio/none.png';
1485}
1486
1487$bgcolor = $status[$a] eq "on" ? "${Header::colourgreen}" : ($status[$a] eq "off" && $dates[$a] eq "") ? "${Header::colourblue}" : "${Header::colourred}";
1488$statustxt = $status[$a] eq "on" ? "$Lang::tr{'wio up'}" : ($status[$a] eq "off" && $dates[$a] eq "") ? "$Lang::tr{'wio_no_image'}" : "$Lang::tr{'wio down'}";
1489
1490print"<tr".($a % 2?" bgcolor='$color{'color20'}'":" bgcolor='$color{'color22'}'")." height='20'>";
1491printf ("<td align='center'> %02d</td>", $a+1);
1492
1493print"<td align='center'><form method='post' action='$ENV{'SCRIPT_NAME'}' enctype='multipart/form-data'>
1494 <input type='hidden' name='ACTION' value='$Lang::tr{'enable disable client'}' />
1495 <input type='image' name='$Lang::tr{'enable disable client'}' src='/images/$gif' align='middle' alt='$gdesc' title='$gdesc' />
1496 <input type='hidden' name='ID' value='$a' /></form></td>";
1497
1498if ( $pingmethode[$a] eq 'ip') {
1499 print"<td align='center'><form method='post' action='$ENV{'SCRIPT_NAME'}' enctype='multipart/form-data'>
1500 <input type='hidden' name='ACTION' value='$Lang::tr{'wio_ip_on'}' />
1501 <input type='image' name='$Lang::tr{'wio_ip_on'}' src='/images/wio/ip.png' align='middle' alt='$Lang::tr{'wio_ip_on'}' title='$Lang::tr{'wio_ip_on'}' />
1502 <input type='hidden' name='ID' value='$a' /></form></td>";
1503}
1504else {
1505 print"<td align='center'><form method='post' action='$ENV{'SCRIPT_NAME'}' enctype='multipart/form-data'>
1506 <input type='hidden' name='ACTION' value='$Lang::tr{'wio_fqdn_on'}' />
1507 <input type='image' name='$Lang::tr{'wio_fqdn_on'}' src='/images/wio/fqdn.png' align='middle' alt='$Lang::tr{'wio_fqdn_on'}' title='$Lang::tr{'wio_fqdn_on'}' />
1508 <input type='hidden' name='ID' value='$a' /></form></td>";
1509}
1510
1511print"<td align='center'>$dates[$a]</td>";
1512
1513print"<td align='center'><img align='middle' src='/images/$webimg' /></td>";
1514
1515if ( $webinterface[$a] eq 'HTTP' ) {
1516 print"<td align='center'><a title=\"$Lang::tr{'wio_webinterface_link'}\" href=\"http://$ipaddresses[$a]\" target=\"_blank\">$ipaddresses[$a]</a></td>";
1517}
1518elsif ( $webinterface[$a] eq 'HTTPS' ) {
1519 print"<td align='center'><a title=\"$Lang::tr{'wio_webinterface_link'}\" href=\"https://$ipaddresses[$a]\" target=\"_blank\">$ipaddresses[$a]</a></td>";
1520}
1521else {
1522 print"<td align='center'>$ipaddresses[$a]</td>";
1523}
1524
1525my $dotip = length($ipaddresses[$a]) - rindex($ipaddresses[$a],'.');
1526 SWITCH: {
1527 foreach (@devs_color) {
1528 my $in = 0;
1529 $ic = "${_}";
1530
1531 foreach $interface (@devs_net) {
f928cc5a 1532 next if ( $netsettings{"$ic"."_DEV"} eq 'red0' && $netsettings{"RED_TYPE"} eq 'PPPOE');
0d6cc79d
SF
1533 if ( $netsettings{"$ic"."_DEV"} eq $interface ) {
1534 if ( &General::IpInSubnet($ipaddresses[$a], $netsettings{"$ic"."_NETADDRESS"}, $netsettings{"$ic"."_NETMASK"}) ) {
391a2459
SF
1535 if ( $netsettings{"$ic"."_DEV"} eq 'red0' ) {
1536 print"<td align='center' height='20'><img src='$imgstatic/$devs_img[$in]' alt='$Lang::tr{'wio_red_lan'}' title='$Lang::tr{'wio_red_lan'}' /></td>";
1537 }
1538 else {
1539 print"<td align='center' height='20'><img src='$imgstatic/$devs_img[$in]' alt='$Lang::tr{$devs_alt[$in]}' title='$Lang::tr{$devs_alt[$in]}' /></td>";
391a2459
SF
1540 }
1541 last SWITCH;
0d6cc79d
SF
1542 }
1543 }
1544 $in++;
1545 }
1546 }
1547
0d6cc79d
SF
1548 if ( -e "$vpnpid" ) {
1549 foreach $key (keys(%vpnconfighash)) {
1550 next unless ($vpnconfighash{$key}[3] eq 'net');
c1fc92a9 1551
0d6cc79d 1552 my $convertip = &General::ipcidr2msk($vpnconfighash{$key}[11]);
a25c95b3 1553
0d6cc79d
SF
1554 my @net = split ("/", $convertip);
1555
1556 $vpnn2nip = $net[0];
1557 $vpnn2nmask = length($net[1]) - rindex($net[1],'.');
1558
1559 if (substr($ipaddresses[$a],0,length($ipaddresses[$a])-$dotip) eq substr($vpnn2nip,0,length($vpnn2nip)-$vpnn2nmask)) {
391a2459 1560 print"<td align='center'><img align='middle' src='$imgstatic/vpn.png' alt='IPsec' title='IPsec' /></td>";
0d6cc79d
SF
1561 last SWITCH;
1562 }
1563 }
1564 }
1565
1566 if ( $ovpnsettings{'DOVPN_SUBNET'} ne '' ) {
1567 @match = split ("/", $ovpnsettings{'DOVPN_SUBNET'});
1568
1569 if ( &General::IpInSubnet($ipaddresses[$a], $match[0], $match[1]) ) {
c1fc92a9
SFD
1570 print"<td align='center'><img src='$imgstatic/ovpn.png' alt='OpenVPN' title='OpenVPN' /></td>";
1571 last SWITCH;
0d6cc79d
SF
1572 }
1573 }
1574
1575 if ( %ovpnccdconfhash ne '' ) {
1576 foreach $key (keys(%ovpnccdconfhash)) {
c1fc92a9 1577
0d6cc79d 1578 my $convertip = &General::ipcidr2msk($ovpnccdconfhash{$key}[1]);
0d6cc79d
SF
1579 my @net = split ("/", $convertip);
1580
1581 $vpnn2nip = $net[0];
1582 $vpnn2nmask = length($net[1]) - rindex($net[1],'.');
1583
1584 if (substr($ipaddresses[$a],0,length($ipaddresses[$a])-$dotip) eq substr($vpnn2nip,0,length($vpnn2nip)-$vpnn2nmask)) {
1585 print"<td align='center'><img align='middle' src='$imgstatic/ovpn.png' alt='OpenVPN' title='OpenVPN' /></td>";
1586 last SWITCH;
1587 }
0d6cc79d
SF
1588 }
1589 }
a25c95b3 1590
f928cc5a 1591 if ( $netsettings{"RED_TYPE"} eq 'PPPOE' ) {
a25c95b3
SFD
1592 my $redipadr = qx'ip addr | grep red0 | grep inet | awk "{print \$2}"';
1593 my @rednet = split ("/", $redipadr);
1594 chomp ($rednet[1]);
1595 my $red_netmask = General::iporsubtodec($rednet[1]);
1596 my $red_netaddress = Network::get_netaddress("$rednet[0]/$red_netmask");
c1fc92a9 1597
a25c95b3 1598 if ( &General::IpInSubnet($ipaddresses[$a], $red_netaddress, $red_netmask) ) {
391a2459 1599 print"<td align='center' height='20'><img src='$imgstatic/red.png' alt='$Lang::tr{'internet'}' title='$Lang::tr{'internet'}' /></td>";
a25c95b3
SFD
1600 last SWITCH;
1601 }
f928cc5a
SF
1602 }
1603 else {
a25c95b3
SFD
1604 print"<td align='center'><img align='middle' src='$imgstatic/white.png' alt='$Lang::tr{'wio_unknown_lan'}' title='$Lang::tr{'wio_unknown_lan'}' /></td>";
1605 last SWITCH;
a25c95b3 1606 }
0d6cc79d
SF
1607 }
1608
1609if ( $webinterface[$a] eq 'HTTP' ) {
1610 print"<td align='center'><a title=\"$Lang::tr{'wio_webinterface_link'}\" href=\"http://$names[$a]\" target=\"_blank\">$names[$a]</a></td>";
1611}
1612elsif ( $webinterface[$a] eq 'HTTPS' ) {
1613 print"<td align='center'><a title=\"$Lang::tr{'wio_webinterface_link'}\" href=\"https://$names[$a]\" target=\"_blank\">$names[$a]</a></td>";
1614}
1615else {
1616 print"<td align='center'>$names[$a]</td>";
1617}
1618
1619print"
1620 <td>
1621 <table bgcolor='$bgcolor' cellpadding='2' cellspacing='0' width='100%'>
1622 <tr height='20'>
1623 <td align='center'><font color='$color{'color21'}'><b>$statustxt</b></font></td>
1624 </tr>
1625 </table>
1626 </td>
1627
1628 <td width='3%' align='center'><form method='post' action='$ENV{'SCRIPT_NAME'}' enctype='multipart/form-data'>
1629 <input type='hidden' name='ACTION' value='$Lang::tr{'wio_sc_refresh'}' />
1630 <input type='image' name='$Lang::tr{'wio_sc_refresh'}' src='$imgstatic/refresh.png' align='middle' alt='$Lang::tr{'wio_sc_refresh'}' title='$Lang::tr{'wio_sc_refresh'}' />
1631 <input type='hidden' name='ID' value='$a' /></form></td>
1632
1633 <td width='3%' align='center'><form method='post' action='$ENV{'SCRIPT_NAME'}' enctype='multipart/form-data'>
1634 <input type='hidden' name='ACTION' value='$Lang::tr{'enable disable dyndns'}' />
1635 <input type='image' name='$Lang::tr{'enable disable dyndns'}' src='/images/$dyndnsimg' align='middle' alt='$dyndnsimgtxt' title='$dyndnsimgtxt' />
1636 <input type='hidden' name='ID' value='$a' /></form></td>";
1637
1638if ( defined($dyndns[$a]) && ($dyndns[$a] eq 'on') ) {
1639 print"<td width='3%' align='center'><form method='post' action='$ENV{'SCRIPT_NAME'}' enctype='multipart/form-data'>
1640 <input type='hidden' name='ACTION' value='$Lang::tr{'wio_dyndns_refresh'}' />
1641 <input type='image' name='$Lang::tr{'wio_dyndns_refresh'}' src='/images/reload.gif' align='middle' alt='$Lang::tr{'wio_dyndns_refresh'}' title='$Lang::tr{'wio_dyndns_refresh'}' />
1642 <input type='hidden' name='ID' value='$a' /></form></td>";
1643}
1644else {
1645 print"<td width='3%' align='center'>-</td>";
1646}
1647
1648if ( -e "/var/log/rrd/wio/$id[$a].rrd" ) {
1649 print"
1650 <td width='3%' align='center'><form method='post' action='/cgi-bin/wiographs.cgi' enctype='multipart/form-data'>
1651 <input type='image' name='$Lang::tr{'wio_graphs'}' src='$imgstatic/graph.png' align='middle' alt='$Lang::tr{'wio_graphs'}' title='$Lang::tr{'wio_graphs'}' />
1652 <input type='hidden' name='HOSTID' value='$id[$a]' /><input type='hidden' name='HOSTNAME' value='$names[$a]' /></form></td>
1653 ";
1654}
1655else {
1656 print "<td width='3%' align='center'><img src='$imgstatic/no_graph.png' align='middle' alt='$Lang::tr{'wio_no_graphs'}' title='$Lang::tr{'wio_no_graphs'}' /></td>";
1657}
1658
1659if ( $wiosettings{'SENDEMAIL'} eq 'on') {
1660 print"<td width='3%' align='center'><form method='post' action='$ENV{'SCRIPT_NAME'}' enctype='multipart/form-data'>
1661 <input type='hidden' name='ACTION' value='$Lang::tr{'wio_mail_online'}' />
1662 <input type='image' name='$Lang::tr{'wio_mail_online'}' src='/images/$mailonimg' align='middle' alt='$mailonimgtxt' title='$mailonimgtxt' />
1663 <input type='hidden' name='ID' value='$a' /></form></td>
1664 <td width='3%' align='center'><form method='post' action='$ENV{'SCRIPT_NAME'}' enctype='multipart/form-data'>
1665 <input type='hidden' name='ACTION' value='$Lang::tr{'wio_mail_offline'}' />
1666 <input type='image' name='$Lang::tr{'wio_mail_offline'}' src='/images/$mailoffimg' align='middle' alt='$mailoffimgtxt' title='$mailoffimgtxt' />
1667 <input type='hidden' name='ID' value='$a' /></form></td>";
1668}
1669else {
1670 print"<td width='3%' align='center'>-</td>
1671 <td width='3%' align='center'>-</td>";
1672}
1673
1674print"
1675 <td width='3%' align='center'><form method='post' action='$ENV{'SCRIPT_NAME'}' enctype='multipart/form-data'>
1676 <input type='hidden' name='ACTION' value='$Lang::tr{'edit'}' />
1677 <input type='image' name='$Lang::tr{'edit'}' src='/images/edit.gif' align='middle' alt='$Lang::tr{'edit'}' title='$Lang::tr{'edit'}' />
1678 <input type='hidden' name='ID' value='$a' /></form></td>
1679
1680 <td width='3%' align='center'><form method='post' action='$ENV{'SCRIPT_NAME'}' enctype='multipart/form-data'>
1681 <input type='hidden' name='ACTION' value='$Lang::tr{'wio_remove_client'}' />
1682 <input type='image' name='$Lang::tr{'wio_remove_client'}' src='/images/delete.gif' align='middle' alt='$Lang::tr{'wio_remove_client'}' title='$Lang::tr{'wio_remove_client'}' onClick=\"return confirm('$Lang::tr{'wio_remove_client_hint'}')\" />
1683 <input type='hidden' name='ID' value='$a' /></form></td></tr>
1684";
1685
391a2459
SF
1686if ($wiosettings{'CLIENTREMARK'} eq 'on') {
1687 print"<tr".($a % 2?" bgcolor='$color{'color20'}'":" bgcolor='$color{'color22'}'")." height='20'><td>&nbsp;</td><td colspan='16' align='left'>".($remark[$a] ne '' ? "$remark[$a]" : "-")."</td></tr>";
0d6cc79d
SF
1688}
1689 print"<tr height='1'><td colspan='17' bgcolor='#696565'></td></tr>";
1690}
1691
1692print"</table>";
1693
1694&Header::closebox();
1695
1696}
1697
1698## add / modify client
1699
1700$checked{'EN'}{'on'} = ($wiosettings{'EN'} eq '' ) ? '' : "checked='checked'";
1701
1702$checked{'DYNDNS'}{'off'} = $checked{'DYNDNS'}{'on'} = '';
1703$checked{'DYNDNS'}{$wiosettings{'DYNDNS'}} = "checked='checked'";
1704
1705$checked{'SENDEMAILON'}{'off'} = $checked{'SENDEMAILON'}{'on'} = '';
1706$checked{'SENDEMAILON'}{$wiosettings{'SENDEMAILON'}} = "checked='checked'";
1707
1708$checked{'SENDEMAILOFF'}{'off'} = $checked{'SENDEMAILOFF'}{'on'} = '';
1709$checked{'SENDEMAILOFF'}{$wiosettings{'SENDEMAILOFF'}} = "checked='checked'";
1710
1711if (! defined($errormessage) && $wiosettings{'ACTION'} ne $Lang::tr{'edit'} ) {
1712 $wiosettings{'PINGMETHODE'} = 'ip';
1713}
1714
1715$checked{'PINGMETHODE'}{'ip'} = $checked{'PINGMETHODE'}{'fqdn'} = '';
1716$checked{'PINGMETHODE'}{$wiosettings{'PINGMETHODE'}} = "checked='checked'";
1717
1718$selected{'WEBINTERFACE'}{'----'} = '';
1719$selected{'WEBINTERFACE'}{'HTTP'} = '';
1720$selected{'WEBINTERFACE'}{'HTTPS'} = '';
1721$selected{'WEBINTERFACE'}{$wiosettings{'WEBINTERFACE'}} = "selected='selected'";
1722
1723$buttontext = $Lang::tr{'wio_client_add'};
1724
1725if ( $wiosettings{'ACTION'} eq $Lang::tr{'edit'} || defined($errormessage) && ! defined($message) ) {
1726 &Header::openbox('100%', 'left', $Lang::tr{'wio_edit_client'});
1727 $buttontext = $Lang::tr{'update'};
1728}
1729else {
1730 &Header::openbox('100%', 'left', $Lang::tr{'wio_edit_settings'});
1731}
1732
1733if (! defined($errormessage) && $wiosettings{'ACTION'} ne $Lang::tr{'edit'} ) {
1734print"
1735<table width='100%' border='0' bordercolor='$Header::bordercolour' cellspacing='0' cellpadding='0' style='border-collapse: collapse'>
1736<tr>
a25c95b3
SFD
1737 <td width='33%' bgcolor='$color{'color20'}' align='left' height='25'><b>&nbsp;$Lang::tr{'wio_add'}</b></td>
1738 <td width='67%' align='right'>&nbsp;</td>
0d6cc79d
SF
1739</tr>
1740<tr>
1741 <td>&nbsp;</td>
1742</tr>
1743</table>
1744";
1745}
1746
1747print"
1748<form method='post' action='$ENV{'SCRIPT_NAME'}'>
1749<input type='hidden' name='ID' value='$wiosettings{'ID'}' />
1750<input type='hidden' name='CLIENTID' value='$wiosettings{'CLIENTID'}' />
1751<input type='hidden' name='ONLINE' value='$wiosettings{'ONLINE'}' />
1752<input type='hidden' name='TIMESTAMP' value='$wiosettings{'TIMESTAMP'}' />
1753";
1754
1755print"
1756<table width='100%' border='0' bordercolor='$Header::bordercolour' cellspacing='0' cellpadding='0' style='border-collapse: collapse'>
1757<tr>
1758 <td height='30'>$Lang::tr{'wio_client_enable'}</td>
1759 <td align='left'><input type='checkbox' name='EN' $checked{'EN'}{'on'} /></td>
1760 <td colspan='4'>&nbsp;</td>
1761</tr>
1762<tr>
1763 <td height='30'>$Lang::tr{'wio ipadress'}:</td>
1764 <td align='left'><input type='text' name='IPADR' value='$wiosettings{'IPADR'}' size='25' /></td>
1765 <td>$Lang::tr{'wio name'}:</td>
1766 <td align='left'><input type='text' name='HOST' value='$wiosettings{'HOST'}' size='25' /></td>
1767 <td>$Lang::tr{'remark'}:</td>
1768 <td align='left'><input type='text' name='REMARK' value='$wiosettings{'REMARK'}' size='30'></td>
1769</tr>
1770<tr>
1771 <td height='30'>$Lang::tr{'wio_ping_send'}:</td>
1772 <td align='left'><input type='radio' name='PINGMETHODE' value='ip' $checked{'PINGMETHODE'}{'ip'} />&nbsp;IP&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type='radio' name='PINGMETHODE' value='fqdn' $checked{'PINGMETHODE'}{'fqdn'} />&nbsp;FQDN</td>
1773 <td>$Lang::tr{'wio_dyndns'}:</td>
1774 <td align='left'><input type='checkbox' name='DYNDNS' $checked{'DYNDNS'}{'on'} /></td>
1775";
1776
1777if ( $wiosettings{'SENDEMAIL'} eq 'on' ) {
1778 print"<td>$Lang::tr{'wio_sendemail'}:</td>
1779 <td><input type='checkbox' name='SENDEMAILON' $checked{'SENDEMAILON'}{'on'} />&nbsp;$Lang::tr{'wio_online'}&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type='checkbox' name='SENDEMAILOFF' $checked{'SENDEMAILOFF'}{'on'} />&nbsp;$Lang::tr{'wio_offline'}</td>";
1780}
1781else {
1782 print"<td colspan='2'>&nbsp;</td>";
1783}
1784
1785print"
1786</tr>
1787<tr>
1bee37ba 1788 <td height='30'>$Lang::tr{'wio_link_open'}:</td>
0d6cc79d
SF
1789 <td align='left' colspan='5'>
1790 <select size='1' name='WEBINTERFACE' width='80' style='width: 80px'>
1791 <option value='----' $selected{'WEBINTERFACE'}{'----'}>----</option>
1792 <option value='HTTP' $selected{'WEBINTERFACE'}{'HTTP'}>HTTP</option>
1793 <option value='HTTPS' $selected{'WEBINTERFACE'}{'HTTPS'}>HTTPS</option>
1794 </select>
1795 </td>
1796</tr>
1797</table>
1798<table width='100%' cellspacing='0' cellpadding='0' style='border-collapse: collapse'>
1799<tr>
1800 <td width='20%' align='center'>&nbsp;</td>
1801";
1802
1803if ( $buttontext eq $Lang::tr{'update'} && ( defined($errormessage) || $wiosettings{'ACTION'} eq $Lang::tr{'edit'}) && ! defined($message) ) {
1804 print"<td width='20%' align='center'>&nbsp;</td>
1805 <td width='20%' align='center'>&nbsp;</td>
1806 <td width='20%' align='center'><input type='hidden' name='ACTION' value='$Lang::tr{'wio_client_add'}' /><input type='submit' name='SUBMIT' value='$buttontext' /></td>
1807 <td width='20%' align='center'><input type='button' onClick='location.href=\"/cgi-bin/wio.cgi\"' value='$Lang::tr{'wio_back'}'></form></td>";
1808}
1809else {
1810 print"<td width='20%' align='center'>&nbsp;</td>
1811 <td width='20%' align='center'>&nbsp;</td>
1812 <td width='20%' align='center'>&nbsp;</td>
1813 <td width='20%' align='right'><input type='hidden' name='ACTION' value='$Lang::tr{'wio_client_add'}' /><input type='submit' name='SUBMIT' value='$buttontext' /></form></td>";
1814}
1815
1816print"
1817</tr>
1818</table>
1819";
1820
1821if ( $wiosettings{'ENABLE'} eq 'on' && !$errormessage && $wiosettings{'ACTION'} ne $Lang::tr{'edit'} || $message == 2 ) {
1822
1823&hrline();
1824
1825## arp table entries
1826
1827print"
1828<table border='0' width='100%' bordercolor='$Header::bordercolour' cellspacing='0' cellpadding='0' style='border-collapse: collapse'>
1829<tr>
a25c95b3
SFD
1830 <td width='33%' bgcolor='$color{'color20'}' align='left' height='25'><b>&nbsp;$Lang::tr{'wio_arp_table_entries'}</b></td>
1831 <td width='67%' align='right'><form method='post' action='$ENV{'SCRIPT_NAME'}'><input type='hidden' name='WIOGUISHOWARPTABLE' value='arptable' /><input type='submit' name='ACTION' value='$arpbuttontext' /></form></td>
0d6cc79d 1832</tr>
0d6cc79d 1833</table>
a25c95b3
SFD
1834";
1835
1836if ( $wiosettings{'WIOGUISHOWARPTABLE'} eq 'on' ) {
0d6cc79d 1837
a25c95b3 1838print"
0d6cc79d 1839<table border='0' width='100%' bordercolor='$Header::bordercolour' cellspacing='0' cellpadding='0' style='border-collapse: collapse'>
a25c95b3 1840<tr><td colspan='2'>&nbsp;</td></tr>
0d6cc79d
SF
1841<tr bgcolor='$color{'color20'}'>
1842 <td width='5%' align='center' height='20'><b>$Lang::tr{'wio_id'}</b></td>
1843 <td width='20%' align='center' height='20'><b>$Lang::tr{'wio_hwaddress'}</b></td>
1844 <td width='20%' align='center' height='20'><b>$Lang::tr{'wio ipadress'}</b></td>
1845 <td width='15%' align='center' height='20'><b>$Lang::tr{'wio network'}</b></td>
1846 <td width='20%' align='center' height='20'><b>$Lang::tr{'wio name'}</b></td>
1847 <td width='15%' align='center' height='20'><b>$Lang::tr{'wio_iface'}</b></td>
1848 <td width='5%' align='center' height='20'><b>$Lang::tr{'action'}</b></td>
1849</tr>
1850";
1851
1852$output = `/sbin/ip neigh list`;
1853$output = &Header::cleanhtml($output,"y");
1854
1855my $arpcnt = 0;
1856
1857foreach $line (split(/\n/, $output))
1858{
1859 if ($line =~ m/^(.*) dev ([^ ]+) lladdr ([0-9a-f:]*) (.*)$/) {
1860 my $arphost = gethostbyaddr(inet_aton($1), AF_INET);
1861 if ( $arphost eq 'localhost' ) { $arphost = ''; }
1862 push (@arpcache, "$3,$1,$arphost,$2\n");
1863 }
1864 elsif ($line =~ m/^(.*) dev ([^ ]+) (.*)$/) {
1865 my $arphost = gethostbyaddr(inet_aton($1), AF_INET);
1866 if ( $arphost eq 'localhost' ) { $arphost = ''; }
1867 push (@arpcache, ",$1,$arphost,$2\n");
1868 }
1869
1870 $arpcnt++;
1871}
1872
1873&SortDataFile('arpcache',@arpcache);
1874
1875foreach (@arpcache) {
1876 chomp;
1877
1878 @line = split (/\,/, $_);
1879
1880 print"<tr".($idarp % 2?" bgcolor='$color{'color20'}'":" bgcolor='$color{'color22'}'")." height='20'>";
1881 printf ("<td align='center'> %02d</td>", $idarp+1);
1882 print"<td align='center'>$line[0]</td>
1883 <td align='center'>$line[1]</td>";
1884
1885SWITCH: {
1886
1887 foreach (@devs_color) {
1888 my $in = 0;
1889 $ic = "${_}";
1890
1891 foreach $interface (@devs_net) {
1892 next if ( $netsettings{"$ic"."_DEV"} eq 'red0' && ($netsettings{"RED_TYPE"} eq 'DHCP' || $netsettings{"RED_TYPE"} eq 'PPPOE'));
1893
1894 if ($netsettings{"$ic"."_DEV"} eq $interface) {
1895 if ( &General::IpInSubnet($line[1], $netsettings{"$ic"."_NETADDRESS"}, $netsettings{"$ic"."_NETMASK"}) ) {
1896 print"<td align='center'><img src='$imgstatic/$devs_img[$in]' alt='$Lang::tr{$devs_alt[$in]}' title='$Lang::tr{$devs_alt[$in]}' /></td>";
1897 last SWITCH;
1898 }
1899 }
1900
1901 $in++;
1902 }
1903 }
1904
f928cc5a 1905 if ($netsettings{"RED_TYPE"} eq 'DHCP' || $netsettings{"RED_TYPE"} eq 'PPPOE' || $netsettings{"RED_TYPE"} eq 'STATIC') {
0d6cc79d
SF
1906 my $redipadr = qx'ip addr | grep red0 | grep inet | awk "{print \$2}"';
1907 my @rednet = split ("/", $redipadr);
1908 chomp ($rednet[1]);
1909 my $red_netmask = General::iporsubtodec($rednet[1]);
1910 my $red_netaddress = Network::get_netaddress("$rednet[0]/$red_netmask");
1911
1912 if ( &General::IpInSubnet($line[1], $red_netaddress, $red_netmask) ) {
391a2459 1913 print"<td align='center' height='20'><img src='$imgstatic/red.png' alt='$Lang::tr{'internet'}' title='$Lang::tr{'internet'}' /></td>";
0d6cc79d
SF
1914 last SWITCH;
1915 }
1916 else {
1917 print"<td align='center'><img align='middle' src='$imgstatic/white.png' alt='$Lang::tr{'wio_unknown_lan'}' title='$Lang::tr{'wio_unknown_lan'}' /></td>";
1918 last SWITCH;
1919 }
1920 }
1921}
1922
1923 print"<td align='center'>$line[2]</td>
1924 <td align='center'>".&WIO::color_devices($line[3])."</td>";
1925
1926 unless (&WIO::checkinto($line[1], '', @current)) {
1927 print"<td align='center'><form method='post' action='$ENV{'SCRIPT_NAME'}' enctype='multipart/form-data'>
1928 <input type='hidden' name='ACTION' value='$Lang::tr{'wio_add'}' />
1929 <input type='image' name='$Lang::tr{'wio_add'}' src='/images/add.gif' align='middle' alt='$Lang::tr{'wio_add'}' title='$Lang::tr{'wio_add'}' />
1930 <input type='hidden' name='ID' value='$idarp' /></form></td>";
1931 }
1932 else {
1933 print"<td align='center'><img src='$imgstatic/add.png' align='middle' alt='$Lang::tr{'wio_no_add'}' title='$Lang::tr{'wio_no_add'}' /></td>";
1934 }
1935
1936print"</tr>";
1937print"<tr height='1'><td colspan='17' bgcolor='#696565'></td></tr>";
1938$idarp++
1939}
1940
1941print"
1942</table>
1943";
a25c95b3 1944}
0d6cc79d
SF
1945
1946&hrline();
1947
1948print"
1949<table border='0' width='100%' bordercolor='$Header::bordercolour' cellspacing='0' cellpadding='0' style='border-collapse: collapse'>
1950<tr>
a25c95b3
SFD
1951 <td width='33%' bgcolor='$color{'color20'}' align='left' height='25'><b>&nbsp;$Lang::tr{'wio_import_file'}</b></td>
1952 <td width='67%' align='right'><form method='post' action='$ENV{'SCRIPT_NAME'}'><input type='hidden' name='WIOGUISHOWCLIENTIMPORTTABLE' value='clientimport' /><input type='submit' name='ACTION' value='$clientimportbuttontext' /></form></td>
0d6cc79d 1953</tr>
0d6cc79d 1954</table>
a25c95b3
SFD
1955";
1956
1957if ( $wiosettings{'WIOGUISHOWCLIENTIMPORTTABLE'} eq 'on' ) {
1958
1959print"
0d6cc79d 1960<table width='100%' cellspacing='0' cellpadding='0' style='border-collapse: collapse'>
a25c95b3 1961<tr><td colspan='3'>&nbsp;</td></tr>
0d6cc79d
SF
1962<tr bgcolor='$color{'color22'}'>
1963 <form method='post' action='/cgi-bin/wio.cgi' enctype='multipart/form-data'>
391a2459 1964 <td width='33%' align='right'>$Lang::tr{'wio_import_csv'}&nbsp;</td>
0d6cc79d 1965 <td width='40%' align='center'><input type='file' name='CSVFILE' size='30' /></td>
391a2459 1966 <td width='27%' align='right'><input type='hidden' name='ACTION' value='$Lang::tr{'wio_import'}1' /><input type='submit' name='SUBMIT' value='$Lang::tr{'wio_import'}' /></td>
0d6cc79d
SF
1967 </form>
1968</tr>
1969<tr><td colspan='3'>&nbsp;</td></tr>
1970<tr bgcolor='$color{'color22'}'>
1971 <form method='post' action='/cgi-bin/wio.cgi' enctype='multipart/form-data'>
391a2459 1972 <td width='33%' align='right'>$Lang::tr{'wio_import_hosts'}&nbsp;</td>
0d6cc79d 1973 <td width='40%' align='center'>&nbsp;</td>
391a2459 1974 <td width='27%' align='right'><input type='hidden' name='ACTION' value='$Lang::tr{'wio_import'}2' /><input type='submit' name='SUBMIT' value='$Lang::tr{'wio_import'}' /></td>
0d6cc79d
SF
1975 </form>
1976</tr>
1977<tr><td colspan='3'>&nbsp;</td></tr>
1978<tr bgcolor='$color{'color22'}'>
1979 <form method='post' action='/cgi-bin/wio.cgi' enctype='multipart/form-data'>
391a2459 1980 <td width='33%' align='right'>$Lang::tr{'wio_import_fixleases'}&nbsp;</td>
0d6cc79d 1981 <td width='40%' align='center'>&nbsp;</td>
391a2459 1982 <td width='27%' align='right'><input type='hidden' name='ACTION' value='$Lang::tr{'wio_import'}3' /><input type='submit' name='SUBMIT' value='$Lang::tr{'wio_import'}' /></td>
0d6cc79d
SF
1983 </form>
1984</tr>
1985</table>
1986";
a25c95b3 1987}
0d6cc79d 1988
391a2459 1989&hrline();
0d6cc79d
SF
1990
1991print"
1992<table border='0' width='100%' bordercolor='$Header::bordercolour' cellspacing='0' cellpadding='0' style='border-collapse: collapse'>
1993<tr>
a25c95b3
SFD
1994 <td width='33%' bgcolor='$color{'color20'}' align='left' height='25'><b>&nbsp;$Lang::tr{'wio_net_scan'}</b></td>
1995 <td width='67%' align='right'><form method='post' action='$ENV{'SCRIPT_NAME'}'><input type='hidden' name='WIOGUISHOWNETWORKSEARCHTABLE' value='networksearch' /><input type='submit' name='ACTION' value='$networksearchbuttontext' /></form></td>
0d6cc79d
SF
1996</tr>
1997</table>
a25c95b3
SFD
1998";
1999
2000if ( $wiosettings{'WIOGUISHOWNETWORKSEARCHTABLE'} eq 'on' ) {
2001
2002print"
0d6cc79d
SF
2003<table width='100%' cellspacing='0' cellpadding='0' style='border-collapse: collapse'>
2004<tr>
2005 <td colspan='3'>&nbsp;</td>
2006</tr>
2007";
2008
2009foreach (keys(%ifacecolor)) {
2010 if ( $_ eq 'GREEN' ) { $color = "$Header::colourgreen"; $net = $Lang::tr{'wio_net_scan_green'}; }
2011 elsif ( $_ eq 'BLUE' ) { $color = "$Header::colourblue"; $net = $Lang::tr{'wio_net_scan_blue'}; }
391a2459 2012 elsif ( $_ eq 'RED' ) { $color = "$Header::colourred"; $net = $Lang::tr{'wio_net_scan_red'}; }
0d6cc79d
SF
2013 else { $color = "$Header::colourorange"; $net = $Lang::tr{'wio_net_scan_orange'}; }
2014
2015 if ( $netsettings{"${_}_DEV"} eq 'disabled' || $netsettings{"${_}_DEV"} eq '' || $netsettings{"${_}_ADDRESS"} eq '' ) { next; }
2016 else {
2017 print <<END;
2018
2019 <tr bgcolor='$color{'color22'}'>
391a2459 2020 <td width='33%' align='right'><form method='post' action='$ENV{'SCRIPT_NAME'}' enctype='multipart/form-data'>$Lang::tr{'wio_net_scan_l'} <font color='$color'><b>$net&nbsp;</b></font>$Lang::tr{'wio_net_scan_r'}</td>
0d6cc79d 2021 <td width='40%' align='center'><input type='text' name='${_}_IPLOW' value='$wiosettings{"${_}_IPLOW"}' size='14' STYLE='background-color:$color; text-align: center; color:white' /> - <input type='text' name='${_}_IPHIGH' value='$wiosettings{"${_}_IPHIGH"}' size='14' STYLE='background-color:$color; text-align: center; color:white' /></td>
391a2459 2022 <td width='27%' align='right'><input type='hidden' name='ACTION' value='$ifacecolor{$_}' /><input type='hidden' name='ID' value='$netsettings{"${_}_DEV"}' /><input type='submit' name='SUBMIT' value='$Lang::tr{'wio_net_scan_run'}'></form></td>
0d6cc79d
SF
2023 </tr>
2024 <tr>
2025 <td colspan='3'>&nbsp;</td>
2026 </tr>
2027END
2028 }
2029}
2030
2031print"
2032</tr>
2033</table>
2034</form>
2035";
a25c95b3 2036}
0d6cc79d
SF
2037&Header::closebox();
2038}
2039
2040if ( $wiosettings{'ENABLE'} eq 'on' && !$errormessage && $wiosettings{'ACTION'} ne $Lang::tr{'edit'} || $message == 2 ) {
2041
2042&Header::openbox('100%', 'left', $Lang::tr{'wio_service'});
2043
2044print"
2045<table border='0' width='100%' bordercolor='$Header::bordercolour' cellspacing='0' cellpadding='0' style='border-collapse: collapse'>
2046<tr bgcolor='$color{'color22'}'>
f539ff6d 2047 <td colspan='2' align='right'></td>
fe6f676b
SF
2048";
2049
2050if ( $wiosettings{'LOGGING'} eq 'on' ) {
2051 print"<td width='10%' align='right'><form method='post' action='/cgi-bin/logs.cgi/log.dat' enctype='multipart/form-data'><input type='hidden' name='SECTION' value='wio' /><input type='submit' name='SUBMIT' value='$Lang::tr{'system logs'}' /></form></td>";
2052}
2053
2054print"
f539ff6d 2055 <td width='10%' align='right'><form method='post' action='$ENV{'SCRIPT_NAME'}' enctype='multipart/form-data'><input type='hidden' name='ACTION' value='$Lang::tr{'edit'}1' /><input type='submit' name='SUBMIT' value='$Lang::tr{'wio_edit_set'}' /></form></td>
0d6cc79d
SF
2056</tr>
2057</table>
2058";
2059}
2060
2061&Header::closebox();
2062}
2063
2064&Header::closebigbox();
2065&Header::closepage();
2066
2067############################################################################################################################
2068
2069sub SortDataFile {
2070my ($data,@checkfile) = @_;
2071 my $idsort = 0;
2072 our %entries = ();
2073
2074 sub sortips {
2075 my $qs = '';
2076
2077 if (rindex ($wiosettings{'SORT'},'Rev') != -1) {
2078 $qs = substr ($wiosettings{'SORT'},0,length($wiosettings{'SORT'})-3);
2079
2080 if ($qs eq 'IPADR') {
2081 my @a = split (/\./,$entries{$a}->{$qs});
2082 my @b = split (/\./,$entries{$b}->{$qs});
2083 ($b[0]<=>$a[0]) ||
2084 ($b[1]<=>$a[1]) ||
2085 ($b[2]<=>$a[2]) ||
2086 ($b[3]<=>$a[3]);
2087 }
2088 else {
2089 $entries{$b}->{$qs} cmp $entries{$a}->{$qs};
2090 }
2091 }
2092 else {
2093 $qs = $wiosettings{'SORT'};
2094
2095 if ($qs eq 'IPADR') {
2096 my @a = split (/\./,$entries{$a}->{$qs});
2097 my @b = split (/\./,$entries{$b}->{$qs});
2098 ($a[0]<=>$b[0]) ||
2099 ($a[1]<=>$b[1]) ||
2100 ($a[2]<=>$b[2]) ||
2101 ($a[3]<=>$b[3]);
2102 }
2103 else {
2104 $entries{$a}->{$qs} cmp $entries{$b}->{$qs};
2105 }
2106 }
2107 }
2108
2109 if ($data eq 'arpcache') {
2110 foreach (@checkfile) {
2111 chomp;
2112 @temp = split (',', $_);
2113
2114 my @record = ('KEY',$idsort++,'MAC',$temp[0],'IPADR',$temp[1],'HOST',$temp[2],'REMARK',$temp[3],'IFACE',$temp[4]);
2115 my $record = ();
2116 %{$record} = @record;
2117 $entries{$record->{KEY}} = $record;
2118 }
2119
2120 open(FILE, "> $logdir/.arpcache");
2121
2122 foreach (sort sortips keys %entries) {
2123 print FILE "$entries{$_}->{MAC},$entries{$_}->{IPADR},$entries{$_}->{HOST},$entries{$_}->{REMARK},$entries{$_}->{IFACE},$entries{$_}->{HW}\n";
2124 }
2125
2126 close(FILE);
2127
2128 open (FILE, "$logdir/.arpcache");
2129 @arpcache = <FILE>;
2130 close (FILE);
2131 }
2132 else {
2133 foreach (@checkfile) {
2134 chomp;
2135 @temp = split (',', $_);
2136
2137 my @record = ('KEY',$idsort++,'CLIENTID',$temp[0],'TIMESTAMP',$temp[1],'IPADR',$temp[2],'HOST',$temp[3],'EN',$temp[4],'REMARK',$temp[5],'DYNDNS',$temp[6],'SENDEMAILON',$temp[7],'SENDEMAILOFF',$temp[8],'PINGMETHODE',$temp[9],'ONLINE',$temp[10],'WEBINTERFACE',$temp[11]);
2138 my $record = ();
2139 %{$record} = @record;
2140 $entries{$record->{KEY}} = $record;
2141 }
2142
2143 open(FILE, "> $ipadrfile");
2144
2145 foreach (sort sortips keys %entries) {
2146 print FILE "$entries{$_}->{CLIENTID},$entries{$_}->{TIMESTAMP},$entries{$_}->{IPADR},$entries{$_}->{HOST},$entries{$_}->{EN},$entries{$_}->{REMARK},$entries{$_}->{DYNDNS},$entries{$_}->{SENDEMAILON},$entries{$_}->{SENDEMAILOFF},$entries{$_}->{PINGMETHODE},$entries{$_}->{ONLINE},$entries{$_}->{WEBINTERFACE}\n";
2147 }
2148
2149 close(FILE);
2150
2151 &loadips();
2152 }
2153}
2154
2155############################################################################################################################
2156
2157sub hrline {
2158
2159print"<table width='100%'><tr><td colspan='2' height='35'><hr></td></tr></table>";
2160
2161}
2162
2163############################################################################################################################
0d6cc79d
SF
2164
2165sub loadips {
2166
2167&General::readhasharray($ipadrfile, \%ipshash);
2168
2169open(FILE, "< $ipadrfile");
2170@current = <FILE>;
2171close (FILE);
2172
2173}
2174
2175############################################################################################################################
2176
2177sub writeips {
2178
2179open(FILE, "> $ipadrfile");
2180if ( defined($write) ) { print FILE @write; }
2181else { print FILE @current; }
2182close(FILE);
2183
2184}
2185
2186############################################################################################################################
2187
c1fc92a9
SFD
2188sub SortByTunnelName {
2189
2190 if ($vpnconfighash{$a}[1] lt $vpnconfighash{$b}[1]) {
2191 return -1;
2192 }
2193 elsif ($vpnconfighash{$a}[1] gt $vpnconfighash{$b}[1]) {
2194 return 1;
2195 }
2196 else {
2197 return 0;
2198 }
2199
0d6cc79d
SF
2200}
2201
2202############################################################################################################################
2203
c1fc92a9
SFD
2204sub validSave {
2205
0d6cc79d
SF
2206 if ( $wiosettings{'IPADR'} eq '' && $wiosettings{'PINGMETHODE'} eq 'ip' && $wiosettings{'DYNDNS'} eq '' ) {
2207 $errormessage = $Lang::tr{'wio_ip_empty'};
2208 }
2209
2210 if ( $wiosettings{'IPADR'} ne '' && (! &General::validip($wiosettings{'IPADR'})) ) {
2211 $errormessage = $Lang::tr{'wio_ip_error'};
2212 }
2213
2214 if ( $wiosettings{'HOST'} eq '' && $wiosettings{'PINGMETHODE'} eq 'fqdn' ) {
2215 $errormessage = $Lang::tr{'wio_host_empty'};
2216 }
2217
2218 if ( $wiosettings{'HOST'} ne '' && (! &General::validdomainname($wiosettings{'HOST'})) ) {
2219 $errormessage = $Lang::tr{'wio_host_error'};
2220 }
2221
2222 if ( $wiosettings{'DYNDNS'} eq 'on' && (! defined($errormessage)) ) {
2223 unless(&General::validfqdn($wiosettings{'HOST'})) { $errormessage = $Lang::tr{'wio_fqdn_error'}; }
2224 ( $wiosettings{'IPADR'}, $infomessage ) = &WIO::getdyndnsip($wiosettings{'IPADR'}, $wiosettings{'HOST'});
2225 $wiosettings{'PINGMETHODE'} = 'fqdn';
2226 }
2227
2228 if ( $wiosettings{'ID'} eq '' && ! defined($errormessage) ) { $errormessage = &WIO::checkinto($wiosettings{'IPADR'}, $wiosettings{'HOST'}, @current); }
2229
2230 if ( $wiosettings{'REMARK'} ne '' ) { $wiosettings{'REMARK'} =~ s/,/&#44;/g; }
c1fc92a9 2231
0d6cc79d 2232}