]> git.ipfire.org Git - ipfire-2.x.git/blob - src/wio/wio.cgi
Merge branch 'master' into next
[ipfire-2.x.git] / src / wio / wio.cgi
1 #!/usr/bin/perl
2 #
3 ###############################################################################
4 # #
5 # IPFire.org - A linux based firewall #
6 # Copyright (C) 2017-2020 Stephan Feddersen <sfeddersen@ipfire.org> #
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 #
24 # Version: 2020/08/04 21:12:23
25 #
26 # This wio.cgi is based on the code from the IPCop WIO Addon
27 # and is extremly adapted to work with IPFire.
28 #
29 # Autor: Stephan Feddersen
30 # Co-Autor: Alexander Marx
31 # Co-Autor: Frank Mainz (for some code for the IPCop WIO Addon)
32 #
33
34 use strict;
35
36 # enable only the following on debugging purpose
37 #use warnings;
38 #no warnings 'once';
39 #use CGI::Carp 'fatalsToBrowser';
40
41 my $debug = 0;
42
43 use Socket;
44 use POSIX qw(strftime);
45 use File::Copy;
46 use Fatal qw/ open /;
47 use Net::Telnet;
48
49 require '/var/ipfire/general-functions.pl';
50 require '/var/ipfire/network-functions.pl';
51 require '/var/ipfire/lang.pl';
52 require '/var/ipfire/header.pl';
53 require '/usr/lib/wio/wio-lib.pl';
54 require '/usr/lib/wio/wio-graphs.pl';
55
56 my $logdir = "/var/log/wio";
57
58 my ( %mainsettings, %mailsettings, %wiosettings, %cgiparams, %netsettings, %ipshash, %vpnsettings,
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);
70 &General::readhash('/var/ipfire/vpn/settings', \%vpnsettings);
71
72 my $ipadrfile = "$logdir/wioips";
73 my $onoffip = "$logdir/wioscip";
74 my $wiosettings = "/var/ipfire/wio/wio.conf";
75 my $dyndnsconfig = "/var/ipfire/ddns/config";
76 my $importfile = "$logdir/importfile";
77 my $wiofile = "$logdir/wiofile";
78 my $editfile = "$logdir/editfile";
79 my $hostfile = "/var/ipfire/main/hosts";
80 my $dhcpfile = "/var/ipfire/dhcp/fixleases";
81 my $imgstatic = "/images/wio";
82 my $rrddir = "/var/log/rrd/wio";
83 my $refreshbox = '<meta http-equiv="refresh" content="0;url=/cgi-bin/wio.cgi">';
84 my $sortstring = '^IPADR|^HOST';
85 my $ovpnaddon = "/var/ipfire/ovpn";
86 my $ovpnpid = "/var/run/openvpn.pid";
87 my $vpnpid = "/var/run/charon.pid";
88 my $redactive = "/var/ipfire/red/active";
89 my $redip = '-';
90 my $now = strftime "%Y-%m-%d", localtime;
91
92 if ( -e $redactive ) {
93 open(IPADDR, "/var/ipfire/red/local-ipaddress");
94 $redip = <IPADDR>;
95 close IPADDR;
96 chomp($redip);
97 }
98
99 my $i = 0;
100 my $idarp = 0;
101 my $iddyndns = 0;
102 my $idvpn = 0;
103 my $idovpn = 0;
104 my $idsort = 0;
105 my $nr = 0;
106 my $count = 0;
107 my $showcount = 0;
108
109 my $arpbuttontext = "$Lang::tr{'wio_show_table_on'}";
110 my $clientimportbuttontext = "$Lang::tr{'wio_show_table_on'}";
111 my $networksearchbuttontext = "$Lang::tr{'wio_show_table_on'}";
112
113 my ( $message, $infomessage, $errormessage, $importmessage ) = '';
114
115 my ( $buttontext, $host, $timestamp, $ipadr, $on, $remark, $dyndns, $dyndnsip, $sendemailon, $net, $dev, $iprange, $output, $write, $webinterface,
116 $sendemailoff, $pingmethode, $online, $color, $bgcolor, $exitcode, $id, $line, $interface, $counter, $vpnn2nip, $vpnn2nmask, $edc,
117 $edd, $wmon, $wmoff, $ipfqdn, $http, $wioscan, $statustxt, $status, $key, $ic, $text, $image ) = ();
118
119 my ( @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
122 my @nosaved = ('ACTION','ID','CLIENTID','TIMESTAMP','IPADR','HOST','REMARK','DYNDNS','SENDEMAILON','SENDEMAILOFF','PINGMETHODE','ONLINE','WEBINTERFACE');
123
124 my @devs_color = ('GREEN','BLUE','ORANGE','RED');
125 my @devs_net = ('green0','blue0','orange0','red0');
126 my @devs_img = ('green.png','blue.png','orange.png','red.png');
127 my @devs_alt = ('green','blue','orange','red');
128
129 my %ifacecolor = ( GREEN => 'wio_run_green', BLUE => 'wio_run_blue', ORANGE => 'wio_run_orange');
130
131 #if ( $netsettings{'RED_TYPE'} eq 'STATIC' || $netsettings{'RED_TYPE'} eq 'DHCP' ) {
132 # %ifacecolor = ( %ifacecolor, RED => 'wio_run_red' );
133 #}
134
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';
164 $wiosettings{'WIOGUISHOWARPTABLE'} = '';
165 $wiosettings{'WIOGUISHOWCLIENTIMPORTTABLE'} = '';
166 $wiosettings{'WIOGUISHOWNETWORKSEARCHTABLE'} = '';
167
168 &Header::getcgihash(\%wiosettings);
169 &Header::getcgihash(\%mainsettings);
170 &Header::getcgihash(\%mailsettings);
171 &Header::getcgihash(\%netsettings);
172
173 if ( $mailsettings{'USEMAIL'} eq 'on' ) { $wiosettings{'SENDEMAIL'} = 'on'; }
174 else { $wiosettings{'SENDEMAIL'} = 'off'; }
175
176 if ( -e $wiofile ) { goto WIOSCAN; }
177
178 ## get network ips
179 foreach (@devs_color) {
180 if ( $netsettings{"${_}_DEV"} ne '' ) {
181 $wiosettings{"${_}_IPLOW"} = &Network::find_next_ip_address($netsettings{"${_}_NETADDRESS"}, 1);
182
183 my $broadcast = &Network::get_broadcast($netsettings{"${_}_NETADDRESS"} . "/" . $netsettings{"${_}_NETMASK"});
184 $wiosettings{"${_}_IPHIGH"} = &Network::find_next_ip_address($broadcast, -1);
185 }
186 }
187
188 ## save wio settings
189
190 if ( $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'};
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
219 if ( $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' ) {
223 $wiosettings{'CLIENTID'} = $wiosettings{"CLIENTID$count"};
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"};
234 $wiosettings{'WEBINTERFACE'} = $wiosettings{"WEBINTERFACE$count"};
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
264 if ( $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
287 ## show / hide arptable
288
289 if ( $wiosettings{'WIOGUISHOWARPTABLE'} eq 'arptable' ) {
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 }
299 }
300 else {
301 $infomessage = "$Lang::tr{'wio_error_function'}";
302 }
303 }
304
305 ## show / hide clientimporttable
306
307 if ( $wiosettings{'WIOGUISHOWCLIENTIMPORTTABLE'} eq 'clientimport' ) {
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 }
317 }
318 else {
319 $infomessage = "$Lang::tr{'wio_error_function'}";
320 }
321 }
322
323 ## show / hide networksearchtable
324
325 if ( $wiosettings{'WIOGUISHOWNETWORKSEARCHTABLE'} eq 'networksearch' ) {
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 }
335 }
336 else {
337 $infomessage = "$Lang::tr{'wio_error_function'}";
338 }
339 }
340
341 ## add arp client
342
343 if ( $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
372 ## enable / disable client || enable / disable dyndns || enable / disable sendemailon || enable / disable sendemailoff || change ip / fqdn
373
374 if ( $wiosettings{'ACTION'} eq $Lang::tr{'enable disable client'} ) { $edc = 'on'; }
375 if ( $wiosettings{'ACTION'} eq $Lang::tr{'enable disable dyndns'} ) { $edd = 'on'; }
376 if ( $wiosettings{'ACTION'} eq $Lang::tr{'wio_mail_online'} ) { $wmon = 'on'; }
377 if ( $wiosettings{'ACTION'} eq $Lang::tr{'wio_mail_offline'} ) { $wmoff = 'on'; }
378 if (( $wiosettings{'ACTION'} eq $Lang::tr{'wio_ip_on'} ) || ( $wiosettings{'ACTION'} eq $Lang::tr{'wio_fqdn_on'} )) { $ipfqdn = 'on'; }
379
380 if ( 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
410 if ( $wiosettings{'ACTION'} eq $Lang::tr{'wio_refresh'} || $wiosettings{'ACTION'} eq $Lang::tr{'wio_sc_refresh'} ) {
411
412 unless ( `ps -A | grep wio.pl` ) {
413
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
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
427 print"
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
439 while ( system("/usr/local/bin/wiohelper", "&") ) {}
440
441 exit 0;
442 }
443 else {
444 $infomessage = "$Lang::tr{'wio_already_running'}";
445 unlink($onoffip);
446 }
447
448 }
449
450 ## refresh dyndns ip
451
452 if ( $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
472 if ( $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
498 if ( $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
520 if ( $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
533 if ( $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
541 if ( $wiosettings{'ACTION'} eq 'wio_run_green' ||
542 $wiosettings{'ACTION'} eq 'wio_run_blue' ||
543 $wiosettings{'ACTION'} eq 'wio_run_red' ||
544 $wiosettings{'ACTION'} eq 'wio_run_orange') { $wioscan = 'on'; }
545
546 if ( $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
551 unless ( `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
577 EDIT:
578
579 &General::readhash($wiosettings, \%wiosettings);
580
581 &Header::showhttpheaders();
582 &Header::openpage($Lang::tr{'wio'}, 1, '');
583 &Header::openbigbox('100%', 'left');
584
585 if ($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
591 if ( -e "$editfile" ) {
592 open(FILE, "< $editfile" ); }
593 elsif ( $wiosettings{'ACTION'} eq $Lang::tr{'wio_import'}.'1' ) {
594 open(FILE, "< $importfile" ); }
595 elsif ( $wiosettings{'ACTION'} eq $Lang::tr{'wio_import'}.'2' ) {
596 open(FILE, "< $hostfile" ); }
597 elsif ( $wiosettings{'ACTION'} eq $Lang::tr{'wio_import'}.'3' ) {
598 open(FILE, "< $dhcpfile" ); }
599 elsif ( $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'}; }
608 elsif ( $_ eq 'RED' ) { $color = "$Header::colourred"; $net = $Lang::tr{'wio_msg_red'}; }
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%'>
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>
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>;
627 close(FILE);
628
629 if ( $wioscan ne 'on' && ! -e $wiofile ) { @hosts = sort @hosts; }
630 else {
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
639 WIOSCAN:
640
641 if ( -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
653 foreach (@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'} = '';
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
711 if (! &WIO::checkinto($wiosettings{'IPADR$count'}, $wiosettings{'HOST$count'}, @current) ) {
712
713 if ( $importmessage ) {
714 &Header::openbox('100%', 'left', "$Lang::tr{'wio_import_data'}'$wiosettings{'HOST$count'}'$Lang::tr{'wio_import_data1'}");
715 }
716 elsif ( $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 }
719 elsif ( $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 }
722 else {
723 &Header::openbox('100%', 'left', $Lang::tr{'wio_import_leases'});
724 }
725
726 print"
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
745 if ( $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 }
748 else {
749 print"<td><input type='text' name='HOST$count' size='18' value='$wiosettings{'HOST$count'}' /></td>";
750 }
751
752 print"
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
763 if ( $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 }
767 else {
768 print"<td colspan='2'>&nbsp;</td>";
769 }
770
771 print"
772 </tr>
773 <tr>
774 <td height='30'>$Lang::tr{'wio_link_open'}:</td>
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
792 if ( $showcount gt 0 ) {
793 &Header::openbox('100%', 'left', $Lang::tr{'wio_import_infos'});
794
795 print"
796 <table width='100%'>
797 <tr>
798 ";
799
800 if ($importmessage) { print"<td>&nbsp;</td>"; }
801 else { print"<td><font color='$color{'color11'}'>$Lang::tr{'wio_import_infos_csv'}</font></td>"; }
802
803 print"
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 }
821 else {
822 print"<meta http-equiv=\"refresh\" content=\"0; URL=$ENV{'SCRIPT_NAME'}?INFO\">";
823 }
824
825 if ( -e "$editfile" ) { unlink ($editfile); }
826 if ( -e "$wiofile" ) { unlink($wiofile); }
827 exit 0;
828 }
829 else {
830 $infomessage = "$Lang::tr{'wio_error_function'}";
831 }
832 }
833
834 ## skript function
835
836 if ($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
863 ERROR:
864
865 unless($message == 1) { &General::readhash($wiosettings, \%wiosettings); }
866
867 for ($i=5; $i<=60; $i+=5) { $selected{'CRON'}{$i} = ''; }
868
869 $selected{'CRON'}{$wiosettings{'CRON'}} = "selected='selected'";
870
871 for ($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
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
903 if ( $debug ) {
904 &Header::openbox('100%', 'left', 'DEBUG', 'warning');
905
906 print"errormessage: $errormessage<br />\n";
907 print"infomessage: $infomessage<br />\n";
908
909 &hrline();
910
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
927 if ( $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
933 if ( $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
941 if ( $wiosettings{'ACTION'} eq $Lang::tr{'edit'}.'1' || $message == 1 || $wiosettings{'ENABLE'} eq 'off' ) {
942
943 &Header::openbox('100%', 'left', $Lang::tr{'wio settings'});
944
945 print"
946 <form method='post' action='$ENV{'SCRIPT_NAME'}' enctype='multipart/form-data'>
947 <table width='100%'>
948 <tr>
949 <td bgcolor='$color{'color20'}' align='left'><b>$Lang::tr{'wio_settings_msg_hint'}</b></td>
950 <td colspan='2'>&nbsp;</td>
951 </tr>
952 <tr>
953 <td width='48%'>&nbsp;</td>
954 <td width='2%'>&nbsp;</td>
955 <td width='50%'>&nbsp;</td>
956 </tr>
957 <tr>
958 <td align='right'>$Lang::tr{'wio enabled'}</td>
959 ";
960
961 print"<td>&nbsp;</td>";
962
963 if ( $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 }
966 else {
967 print"<td align='left'><input type='checkbox' name='ENABLE' $checked{'ENABLE'}{'on'} /></td>";
968 }
969 print"
970 </tr>
971 <tr><td colspan='3'>&nbsp;</td></tr>
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
978 for ($i=5; $i<=60; $i+=5) {
979 $_ = sprintf("%02s",$i);
980 print "<option $selected{'CRON'}{$_}>$_</option>\n";
981 }
982
983 print"
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
993 for ($i=1; $i<=15; $i++) {
994 $_ = sprintf("%02s",$i);
995 print "<option $selected{'TIMEOUT'}{$_}>$_</option>\n";
996 }
997
998 print"
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>
1014 ";
1015
1016 if ( $wiosettings{'SENDEMAIL'} eq 'on' ) {
1017 print"
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 }
1032 if ( -e "$ovpnaddon" || ! -z "/var/ipfire/vpn/config" ) {
1033 print"
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
1046 for ($i=1; $i<=15; $i++) {
1047 $_ = sprintf("%02s",$i);
1048 print "<option $selected{'OVPNCRON'}{$_}>$_</option>\n";
1049 }
1050
1051 print"
1052 </select>&nbsp;$Lang::tr{'wio min'}</td>
1053 </tr>
1054 <tr><td colspan='3'>&nbsp;</td></tr>
1055 ";
1056 }
1057 print"
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();
1072 exit 0;
1073 }
1074
1075 ## wio client status
1076
1077 if ( $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
1120 print"
1121 <table border='0' width='100%' bordercolor='$Header::bordercolour' cellspacing='0' cellpadding='0' style='border-collapse: collapse'>
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>
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>
1133 <td width='7%' align='center'><b>$Lang::tr{'wio network'}</b></td>
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>
1136 <td width='20%' align='center'><b>$Lang::tr{'wio_dyndns_hosts'}</b></td>
1137 <td width='11%' align='center'><b>$Lang::tr{'wio image'}</b></td>
1138 <td width='14%' align='center'><b>$Lang::tr{'wio_connected'}</b></td>
1139 </tr>
1140 <tr bgcolor='$color{'color22'}' height='20'>
1141 <td align='center'>01</td>
1142 <td align='center'><font color='$Header::colourred'>$redip</font></td>
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
1149 if ( -s "$dyndnsconfig" ) {
1150
1151 open(FILE, "< $dyndnsconfig");
1152 @ddns = <FILE>;
1153 close (FILE);
1154
1155 foreach (@ddns) {
1156 chomp;
1157
1158 @temp = split (/\,/, $_);
1159
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 }
1166
1167 print"<font color='$bgcolor'>$temp[1].$temp[2]</font>";
1168 if ( $iddyndns++ ne (@ddns-1) ) { print"<br />\n"; }
1169 }
1170 }
1171 else {
1172 print"-";
1173 }
1174
1175 print"
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
1194 if ( -e "$vpnpid" ) {
1195
1196 @vpnstatus = `/usr/local/bin/ipsecctrl I`;
1197
1198 print"
1199 <table border='0' width='100%' bordercolor='$Header::bordercolour' cellspacing='0' cellpadding='0' style='border-collapse: collapse'>
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>
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>
1214 <td width='14%' align='center'><b>$Lang::tr{'wio_connected'}</b></td>
1215 </tr>
1216 ";
1217
1218 foreach $key (sort SortByTunnelName (keys(%vpnconfighash))) {
1219
1220 my ( $vpnclient, $vpnclientip, $vpnrwnet, $vpnn2nnet, $vpntime, $vpncheck ) = '';
1221
1222 $status = "bgcolor='${Header::colourred}'";
1223 $statustxt = "$Lang::tr{'capsclosed'}";
1224 $vpnclient = $vpnconfighash{$key}[1];
1225
1226 my ($ip,$sub) = split(/\//,$vpnsettings{'RW_NET'});
1227 my @ip = split( /\./, $ip);
1228 $vpnrwnet = join( '.', ( $ip[0], $ip[1], $ip[2], ) );
1229
1230 if ($vpnconfighash{$key}[0] eq 'off') {
1231 $status = "bgcolor='${Header::colourblue}'";
1232 $statustxt = "$Lang::tr{'capsclosed'}";
1233 $vpnn2nnet = '-';
1234 }
1235 else {
1236 $vpnn2nnet = $vpnconfighash{$key}[11];
1237 }
1238
1239 foreach (@vpnstatus) {
1240 if ($_ =~ /$vpnclient.*ESTABLISHED/) {
1241 $status = "bgcolor='${Header::colourgreen}'";
1242 $statustxt = "$Lang::tr{'capsopen'}";
1243 $vpntime = `/usr/local/bin/ipsecctrl I | grep $vpnclient.*ESTABLISHED | sed 's/^[ \t]*//' | cut -d " " -f 3-4`;
1244 $vpntime = &WIO::contime($vpntime, "ipsec");
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);
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
1255 printf ("<td align='center'>%02d</td>", $vpnnr);
1256
1257 print"<td align='center'>".($vpncheck ne '' ? "$vpncheck" : "-")."</td>
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>
1260 <td align='center'>".($vpnconfighash{$key}[3] eq 'host' ? (defined($vpnclientip) ? "$vpnclientip" : "-") : $vpnconfighash{$key}[3] eq 'net' ? "$vpnn2nnet" : "-")."</td>
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>
1268 <td align='center' height='20'>".($vpntime ne '' ? "$vpntime" : "-")."</td>
1269 </tr>
1270 ";
1271
1272 if ($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>";
1274 }
1275
1276 print"<tr height='1'><td colspan='7' bgcolor='#696565'></td></tr>";
1277 $idvpn++
1278 }
1279
1280 print"</table>";
1281 &hrline();
1282 }
1283
1284 ## openvpn connection(s)
1285
1286 if ( -e "$ovpnpid" ) {
1287
1288 @ovpnstatus = `cat /var/run/ovpnserver.log`;
1289
1290 print"
1291 <table border='0' width='100%' bordercolor='$Header::bordercolour' cellspacing='0' cellpadding='0' style='border-collapse: collapse'>
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>
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>
1302 <td width='20%' align='center'><b>$Lang::tr{'name'}</b></td>
1303 <td width='8%' align='center'><b>$Lang::tr{'type'}</b></td>
1304 <td width='25%' align='center'><b>$Lang::tr{'wio_common_name'}</b></td>
1305 <td width='11%' align='center'><b>$Lang::tr{'wio image'}</b></td>
1306 <td width='14%' align='center'><b>$Lang::tr{'wio_connected'}</b></td>
1307 </tr>
1308 ";
1309
1310 foreach $key (keys %ovpnconfighash) {
1311
1312 my ( $ovpncheck, $ovpntime, $ovpnclt, $ovpnrwip ) = '';
1313
1314 print"<tr".($idovpn % 2?" bgcolor='$color{'color20'}'":" bgcolor='$color{'color22'}'")." height='20'>";
1315
1316 my $ovpnnr = $idovpn+1;
1317
1318 printf ("<td align='center' height='20'> %02d</td>", $ovpnnr);
1319
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 }
1328
1329 if ( $ovpnconfighash{$key}[0] eq 'off' ) {
1330 $status = "${Header::colourblue}";
1331 $statustxt = "$Lang::tr{'capsclosed'}";
1332 $ovpncheck = "-";
1333 }
1334 else {
1335 if ($ovpnconfighash{$key}[3] eq 'net') {
1336 if (-e "/var/run/$ovpnconfighash{$key}[1]n2n.pid") {
1337 my ( @output, @tustate ) = '';
1338 my $tport = $ovpnconfighash{$key}[22];
1339 my $tnet = new Net::Telnet ( Timeout=>5, Errmode=>'return', Port=>$tport);
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]";
1355 }
1356 }
1357 }
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 }
1365
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 }
1370
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 }
1374
1375 if ( $match[1] ne "Virtual Address" && $match[2] eq $ovpnclt ) {
1376 $ovpnrwip = $match[1];
1377 $ovpncheck = &WIO::statustime($match[4]);
1378 }
1379
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'}";
1387 }
1388 }
1389 }
1390 }
1391
1392 print"
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>
1395 <td align='center'><img align='middle' src='$image' alt='$text' title='$text' /></td>
1396 <td align='center'>".($ovpnrwip ne '' ? "$ovpnrwip" : "-")."</td>
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>
1398 <td align='center'>".(defined($ovpntime) ? "$ovpntime" : "-")."</td>
1399 </tr>
1400 ";
1401
1402 if ($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
1406 print"<tr height='1'><td colspan='17' bgcolor='#696565'></td></tr>";
1407 $idovpn++
1408 }
1409
1410 print"</table>";
1411 &hrline();
1412 }
1413
1414 ## client status
1415
1416 print"
1417 <table border='0' width='100%' bordercolor='$Header::bordercolour' cellspacing='0' cellpadding='0' style='border-collapse: collapse'>
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>
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>
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>
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
1443 for (my $a=0; $a<$nr; $a++) {
1444
1445 my $gif = 'off.gif';
1446 my $gdesc = $Lang::tr{'wio_client_off'};
1447 my $dyndnsimg = 'on.gif';
1448 my $dyndnsimgtxt = $Lang::tr{'wio_dyndns_on'};
1449 my $mailonimg = 'wio/mailgreenon.png';
1450 my $mailonimgtxt = $Lang::tr{'wio_mail_online_on'};
1451 my $mailoffimg = 'wio/mailredon.png';
1452 my $mailoffimgtxt = $Lang::tr{'wio_mail_offline_on'};
1453 my $pingimg = '';
1454 my $pingtxt = '';
1455 my $webimg = '';
1456
1457 if ( $activ[$a] eq 'on' ) {
1458 $gif = 'on.gif';
1459 $gdesc = $Lang::tr{'wio_client_on'};
1460 }
1461
1462 if ( $dyndns[$a] ne 'on' ) {
1463 $dyndnsimg = 'off.gif';
1464 $dyndnsimgtxt = $Lang::tr{'wio_dyndns_off'};
1465 }
1466
1467 if ( $sendemailon[$a] ne 'on' ) {
1468 $mailonimg = 'wio/mailgreenoff.png';
1469 $mailonimgtxt = $Lang::tr{'wio_mail_online_off'};
1470 }
1471
1472 if ( $sendemailoff[$a] ne 'on' ) {
1473 $mailoffimg = 'wio/mailredoff.png';
1474 $mailoffimgtxt = $Lang::tr{'wio_mail_offline_off'};
1475 }
1476
1477 if ( $webinterface[$a] eq 'HTTP' ) {
1478 $webimg = 'wio/http.png';
1479 }
1480 elsif ( $webinterface[$a] eq 'HTTPS' ) {
1481 $webimg = 'wio/https.png';
1482 }
1483 else {
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
1490 print"<tr".($a % 2?" bgcolor='$color{'color20'}'":" bgcolor='$color{'color22'}'")." height='20'>";
1491 printf ("<td align='center'> %02d</td>", $a+1);
1492
1493 print"<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
1498 if ( $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 }
1504 else {
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
1511 print"<td align='center'>$dates[$a]</td>";
1512
1513 print"<td align='center'><img align='middle' src='/images/$webimg' /></td>";
1514
1515 if ( $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 }
1518 elsif ( $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 }
1521 else {
1522 print"<td align='center'>$ipaddresses[$a]</td>";
1523 }
1524
1525 my $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) {
1532 next if ( $netsettings{"$ic"."_DEV"} eq 'red0' && $netsettings{"RED_TYPE"} eq 'PPPOE');
1533 if ( $netsettings{"$ic"."_DEV"} eq $interface ) {
1534 if ( &General::IpInSubnet($ipaddresses[$a], $netsettings{"$ic"."_NETADDRESS"}, $netsettings{"$ic"."_NETMASK"}) ) {
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>";
1540 }
1541 last SWITCH;
1542 }
1543 }
1544 $in++;
1545 }
1546 }
1547
1548 if ( -e "$vpnpid" ) {
1549 foreach $key (keys(%vpnconfighash)) {
1550 next unless ($vpnconfighash{$key}[3] eq 'net');
1551
1552 my $convertip = &General::ipcidr2msk($vpnconfighash{$key}[11]);
1553
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)) {
1560 print"<td align='center'><img align='middle' src='$imgstatic/vpn.png' alt='IPsec' title='IPsec' /></td>";
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]) ) {
1570 print"<td align='center'><img src='$imgstatic/ovpn.png' alt='OpenVPN' title='OpenVPN' /></td>";
1571 last SWITCH;
1572 }
1573 }
1574
1575 if ( %ovpnccdconfhash ne '' ) {
1576 foreach $key (keys(%ovpnccdconfhash)) {
1577
1578 my $convertip = &General::ipcidr2msk($ovpnccdconfhash{$key}[1]);
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 }
1588 }
1589 }
1590
1591 if ( $netsettings{"RED_TYPE"} eq 'PPPOE' ) {
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");
1597
1598 if ( &General::IpInSubnet($ipaddresses[$a], $red_netaddress, $red_netmask) ) {
1599 print"<td align='center' height='20'><img src='$imgstatic/red.png' alt='$Lang::tr{'internet'}' title='$Lang::tr{'internet'}' /></td>";
1600 last SWITCH;
1601 }
1602 }
1603 else {
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;
1606 }
1607 }
1608
1609 if ( $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 }
1612 elsif ( $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 }
1615 else {
1616 print"<td align='center'>$names[$a]</td>";
1617 }
1618
1619 print"
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
1638 if ( 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 }
1644 else {
1645 print"<td width='3%' align='center'>-</td>";
1646 }
1647
1648 if ( -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 }
1655 else {
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
1659 if ( $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 }
1669 else {
1670 print"<td width='3%' align='center'>-</td>
1671 <td width='3%' align='center'>-</td>";
1672 }
1673
1674 print"
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
1686 if ($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>";
1688 }
1689 print"<tr height='1'><td colspan='17' bgcolor='#696565'></td></tr>";
1690 }
1691
1692 print"</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
1711 if (! 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
1725 if ( $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 }
1729 else {
1730 &Header::openbox('100%', 'left', $Lang::tr{'wio_edit_settings'});
1731 }
1732
1733 if (! defined($errormessage) && $wiosettings{'ACTION'} ne $Lang::tr{'edit'} ) {
1734 print"
1735 <table width='100%' border='0' bordercolor='$Header::bordercolour' cellspacing='0' cellpadding='0' style='border-collapse: collapse'>
1736 <tr>
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>
1739 </tr>
1740 <tr>
1741 <td>&nbsp;</td>
1742 </tr>
1743 </table>
1744 ";
1745 }
1746
1747 print"
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
1755 print"
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
1777 if ( $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 }
1781 else {
1782 print"<td colspan='2'>&nbsp;</td>";
1783 }
1784
1785 print"
1786 </tr>
1787 <tr>
1788 <td height='30'>$Lang::tr{'wio_link_open'}:</td>
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
1803 if ( $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 }
1809 else {
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
1816 print"
1817 </tr>
1818 </table>
1819 ";
1820
1821 if ( $wiosettings{'ENABLE'} eq 'on' && !$errormessage && $wiosettings{'ACTION'} ne $Lang::tr{'edit'} || $message == 2 ) {
1822
1823 &hrline();
1824
1825 ## arp table entries
1826
1827 print"
1828 <table border='0' width='100%' bordercolor='$Header::bordercolour' cellspacing='0' cellpadding='0' style='border-collapse: collapse'>
1829 <tr>
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>
1832 </tr>
1833 </table>
1834 ";
1835
1836 if ( $wiosettings{'WIOGUISHOWARPTABLE'} eq 'on' ) {
1837
1838 print"
1839 <table border='0' width='100%' bordercolor='$Header::bordercolour' cellspacing='0' cellpadding='0' style='border-collapse: collapse'>
1840 <tr><td colspan='2'>&nbsp;</td></tr>
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
1855 my $arpcnt = 0;
1856
1857 foreach $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
1875 foreach (@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
1885 SWITCH: {
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
1905 if ($netsettings{"RED_TYPE"} eq 'DHCP' || $netsettings{"RED_TYPE"} eq 'PPPOE' || $netsettings{"RED_TYPE"} eq 'STATIC') {
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) ) {
1913 print"<td align='center' height='20'><img src='$imgstatic/red.png' alt='$Lang::tr{'internet'}' title='$Lang::tr{'internet'}' /></td>";
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
1936 print"</tr>";
1937 print"<tr height='1'><td colspan='17' bgcolor='#696565'></td></tr>";
1938 $idarp++
1939 }
1940
1941 print"
1942 </table>
1943 ";
1944 }
1945
1946 &hrline();
1947
1948 print"
1949 <table border='0' width='100%' bordercolor='$Header::bordercolour' cellspacing='0' cellpadding='0' style='border-collapse: collapse'>
1950 <tr>
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>
1953 </tr>
1954 </table>
1955 ";
1956
1957 if ( $wiosettings{'WIOGUISHOWCLIENTIMPORTTABLE'} eq 'on' ) {
1958
1959 print"
1960 <table width='100%' cellspacing='0' cellpadding='0' style='border-collapse: collapse'>
1961 <tr><td colspan='3'>&nbsp;</td></tr>
1962 <tr bgcolor='$color{'color22'}'>
1963 <form method='post' action='/cgi-bin/wio.cgi' enctype='multipart/form-data'>
1964 <td width='33%' align='right'>$Lang::tr{'wio_import_csv'}&nbsp;</td>
1965 <td width='40%' align='center'><input type='file' name='CSVFILE' size='30' /></td>
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>
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'>
1972 <td width='33%' align='right'>$Lang::tr{'wio_import_hosts'}&nbsp;</td>
1973 <td width='40%' align='center'>&nbsp;</td>
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>
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'>
1980 <td width='33%' align='right'>$Lang::tr{'wio_import_fixleases'}&nbsp;</td>
1981 <td width='40%' align='center'>&nbsp;</td>
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>
1983 </form>
1984 </tr>
1985 </table>
1986 ";
1987 }
1988
1989 &hrline();
1990
1991 print"
1992 <table border='0' width='100%' bordercolor='$Header::bordercolour' cellspacing='0' cellpadding='0' style='border-collapse: collapse'>
1993 <tr>
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>
1996 </tr>
1997 </table>
1998 ";
1999
2000 if ( $wiosettings{'WIOGUISHOWNETWORKSEARCHTABLE'} eq 'on' ) {
2001
2002 print"
2003 <table width='100%' cellspacing='0' cellpadding='0' style='border-collapse: collapse'>
2004 <tr>
2005 <td colspan='3'>&nbsp;</td>
2006 </tr>
2007 ";
2008
2009 foreach (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'}; }
2012 elsif ( $_ eq 'RED' ) { $color = "$Header::colourred"; $net = $Lang::tr{'wio_net_scan_red'}; }
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'}'>
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>
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>
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>
2023 </tr>
2024 <tr>
2025 <td colspan='3'>&nbsp;</td>
2026 </tr>
2027 END
2028 }
2029 }
2030
2031 print"
2032 </tr>
2033 </table>
2034 </form>
2035 ";
2036 }
2037 &Header::closebox();
2038 }
2039
2040 if ( $wiosettings{'ENABLE'} eq 'on' && !$errormessage && $wiosettings{'ACTION'} ne $Lang::tr{'edit'} || $message == 2 ) {
2041
2042 &Header::openbox('100%', 'left', $Lang::tr{'wio_service'});
2043
2044 print"
2045 <table border='0' width='100%' bordercolor='$Header::bordercolour' cellspacing='0' cellpadding='0' style='border-collapse: collapse'>
2046 <tr bgcolor='$color{'color22'}'>
2047 <td colspan='2' align='right'></td>
2048 ";
2049
2050 if ( $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
2054 print"
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>
2056 </tr>
2057 </table>
2058 ";
2059 }
2060
2061 &Header::closebox();
2062 }
2063
2064 &Header::closebigbox();
2065 &Header::closepage();
2066
2067 ############################################################################################################################
2068
2069 sub SortDataFile {
2070 my ($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
2157 sub hrline {
2158
2159 print"<table width='100%'><tr><td colspan='2' height='35'><hr></td></tr></table>";
2160
2161 }
2162
2163 ############################################################################################################################
2164
2165 sub loadips {
2166
2167 &General::readhasharray($ipadrfile, \%ipshash);
2168
2169 open(FILE, "< $ipadrfile");
2170 @current = <FILE>;
2171 close (FILE);
2172
2173 }
2174
2175 ############################################################################################################################
2176
2177 sub writeips {
2178
2179 open(FILE, "> $ipadrfile");
2180 if ( defined($write) ) { print FILE @write; }
2181 else { print FILE @current; }
2182 close(FILE);
2183
2184 }
2185
2186 ############################################################################################################################
2187
2188 sub 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
2200 }
2201
2202 ############################################################################################################################
2203
2204 sub validSave {
2205
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; }
2231
2232 }