PHP - PING NOTIFICACION

 
Vista:
sin imagen de perfil

PING NOTIFICACION

Publicado por juan (2 intervenciones) el 08/03/2025 23:08:49
Hola,

Necesito ayuda para configurar notificaciones en caso de perdida de comunicacion a un nodo por ping y que envie correo por una cuenta de gmail, tengo esto:

<?php
$system = ini_get('system');
// Create a table showing the results
$iplist = array(
array("192.168.1.181","CAMARA ENTRADA FRONTAL"),
array("192.168.1.182","CAMARA SALIDA FRONTAL"),
array("192.168.1.10","MOVIL"),
array("www.google.com","GOOGLE")
);
$i = count($iplist);
$results = [];
for ($j=0; $j < $i; $j++) {
$ip = $iplist[$j][0];
$ping = exec("ping -n 1 $ip", $output, $status);
if (substr($ping, -2) == 'ms') {
$results[] = 1;
}else{
$results[] = 0;
}
}
// Table
echo '<font face=Courier New>';
echo "<table border=1 style=border-colapse:collapse>
<th colspan=4> casa </th>
<tr>
<td align=center width=20>#</td>
<td align=center width=300>IP</td>
<td align=center width=300>STATUS</td>
<td align=center width=300>DESCRIPCION</td>
</tr>";
foreach ($results as $item => $k) {
echo '<tr>';
echo '<td align=center>'.$item.'</td>';
echo '<td>'.$iplist[$item][0].'</td>';
if ($results[$item] == 1) {
echo '<td align=center style=color:green>Online</td>';
}else{
echo '<td align=center style=color:red>Offline</td>';
}
echo '<td>'.$iplist[$item][1].'</td>';
echo '</tr>';
}
echo "</table>";
echo '</font>';
echo header("refresh: 12");

?>


gracias
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder
sin imagen de perfil

PING NOTIFICACION

Publicado por juan (2 intervenciones) el 09/03/2025 08:27:46
Hola,

No entiendo todas tus respuestas?????
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar

PING NOTIFICACION

Publicado por Yamil Bracho (25 intervenciones) el 09/03/2025 16:46:25
PHP tiene una funcion para enviar correo(https://www.php.net/manual/en/function.mail.php)
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar