]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blobdiff - src/scripts/vpn-watch
VPN-Watch ueberprueft nun ob der Tunnel da ist und nicht der ISAKMP.
[people/pmueller/ipfire-2.x.git] / src / scripts / vpn-watch
index 462c6c3164b0cf2df4d89b14281cd1720db51d1b..74a4dc5c1adb8adf1c4cd0dbfe12300a43f6971d 100755 (executable)
@@ -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.");