]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame_incremental - src/scripts/vpn-watch
Fuer den Urlfilter ein Background Image gemacht
[people/pmueller/ipfire-2.x.git] / src / scripts / vpn-watch
... / ...
CommitLineData
1#!/usr/bin/perl
2##################################################
3##### VPN-Watch.pl Version 0.3 #####
4##################################################
5
6use strict;
7
8require '/var/ipfire/general-functions.pl';
9my @vpnsettings;
10my $i = 0;
11my $file = "/var/run/vpn-watch.pid";
12my $debug = 0;
13
14if ( -e $file ){
15 logger("There my be another vpn-watch runnning because $file exists, vpn-watch will try kill the process.");
16 open(FILE, "<$file");
17 my $PID = <FILE>;
18 close(FILE);
19 system("kill -9 $PID");
20 }
21if ($debug){logger("Call of vpn-watch pid not is not existing.");}
22
23system("echo $$ > $file");
24
25while ( $i == 0){
26 sleep(300);
27 if ($debug){logger("We will wait 300 seconds before next action.");}
28
29 if (open(FILE, "<${General::swroot}/vpn/config")) {
30 @vpnsettings = <FILE>;
31 close(FILE);
32 unless(@vpnsettings) {exit 1;}
33 }
34
35foreach (@vpnsettings){
36 my @settings = split(/,/,$_);
37
38 if ($settings[27] ne 'RED'){next;}
39 if ($settings[4] ne 'net'){next;}
40 if ($settings[1] ne 'on'){next;}chomp($settings[29]);
41 if ($settings[29] ne 'on'){next;}
42
43 my $remotehostname = $settings[11];
44
45 if ($debug){logger("Checking connection to $remotehostname.");}
46
47 my $remoteip = `/usr/bin/ping -c 1 $remotehostname 2>/dev/null | head -n1 | awk '{print \$3}' | tr -d '()' | tr -d ':'`;chomp($remoteip);
48 if ($remoteip eq ""){next;}
49 if (system("ipsec whack --status | grep $remoteip >/dev/null")){
50 logger("Remote IP for host $remotehostname has changed or is not connected, restarting connection to $remoteip.");
51 system("/usr/local/bin/ipsecctrl S $settings[0]");
52 next;
53 }
54 if ($debug){logger("All connections may be fine nothing was done.");}
55 }
56}
57
58sub logger {
59 my $log = shift;
60 system("logger -t vpnwatch \"$log\"");
61}