<?php
$host = 'domain.tld';
$timeout = 30;
if (($handle = @fsockopen($host, 80, $errno, $errstr, $timeout)) == false)
{
$apache="FEHLER";
}else {
$apache="OK";
@fclose($handle);
}
if (($handle = @fsockopen($host, 443, $errno, $errstr, $timeout)) == false)
{
$ssl="FEHLER";
}else{
$ssl="OK";
@fclose($handle);
}
if (($handle = @fsockopen($host, 110, $errno, $errstr, $timeout)) == false)
{
$pop3="FEHLER";
}
else
{
$pop3="OK";
@fclose($handle);
}
if (($handle = @fsockopen($host, 25, $errno, $errstr, $timeout)) == false)
{
$smtp="FEHLER";
}
else
{
$smtp="OK";
@fclose($handle);
}
if (($handle = @fsockopen($host, 21, $errno, $errstr, $timeout)) == false)
{
$ftp="FEHLER";
}
else
{
$ftp="OK";
@fclose($handle);
}
$abstand = "\n";
$body = date('d.m.Y - H:i',time()).$abstand;
$body .= 'APACHE: '.$apache.$abstand;
$body .= 'APACHE-SSL: '.$ssl.$abstand;
$body .= 'POP3: '.$pop3.$abstand;
$body .= 'SMTP: '.$smtp.$abstand;
$body .= 'FTP: '.$ftp.$abstand;
echo $body;
if($apache!= "OK" or $ssl!= "OK" or $pop3!= "OK" or $smtp!= "OK" or $ftp!= "OK"){
mail('ungü[email protected]','Serverfehler',$body);
}