VPN-Watch ueberprueft nun ob der Tunnel da ist und nicht der ISAKMP.

VPN-Restart gekillt.


git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@692 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
This commit is contained in:
ms
2007-07-15 09:40:12 +00:00
parent 59a5196e60
commit 0fe5c268a9
3 changed files with 1 additions and 68 deletions

View File

@@ -50,7 +50,7 @@ foreach (@vpnsettings){
my $remoteip = `/usr/bin/ping -c 1 $remotehostname 2>/dev/null | head -n1 | awk '{print \$3}' | tr -d '()' | tr -d ':'`;chomp($remoteip);
if ($remoteip eq ""){next;if ($debug){logger("Unable to resolve $remotehostname.");}}
my $connected= `ipsec whack --status | grep $remoteip`;
my $established= `ipsec whack --status | grep '$settings[2]' | grep 'ISAKMP SA established'`;
my $established= `ipsec whack --status | grep '$settings[2]' | grep 'IPsec SA established'`;
if ( $established eq '' || $connected eq '' ){
logger("Remote IP for host $remotehostname has changed or no connection is established, restarting connection to $remoteip.");