blob: cc0fa3e72a8dd8fa43ed4d73ca06afbe816d4f95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
<?
// *************************************************************************************************************************************************
// Aplicación WEB:
// Autor:
// Fecha Creación:
// Fecha Última modificación:
// Nombre del fichero:
// Descripción :
// muestra los log del equipo
// *************************************************************************************************************************************************
include_once("../includes/ctrlacc.php");
include_once("../clases/AdoPhp.php");
include_once("../includes/constantes.php");
include_once("../includes/comunes.php");
include_once("../includes/CreaComando.php");
include_once("../includes/HTMLSELECT.php");
include_once("../idiomas/php/".$idioma."/comandos/ejecutarscripts_".$idioma.".php");
include_once("../idiomas/php/".$idioma."/consolaremota_".$idioma.".php");
//________________________________________________________________________________________________________
$cmd=CreaComando($cadenaconexion);
if (!$cmd)
Header('Location: '.$pagerror.'?herror=2'); // Error de conexión con servidor B.D.
//___________________________________________________________________________________________________
$nombreordenador=$_GET["nombreordenador"];
if (isset($_GET["ip"]))
{
$ip=$_GET["ip"];
}
else
{
$rs=new Recordset;
$cmd->texto="SELECT * FROM ordenadores WHERE nombreordenador='".$nombreordenador."'";
$rs->Comando=&$cmd;
if (!$rs->Abrir()) return(false); // Error al abrir recordset
$rs->Primero();
if (!$rs->EOF){
$ip=$rs->campos["ip"];
$rs->Cerrar();
}
}
?>
<HTML>
<TITLE>Log: <? echo $_GET["nombreordenador"] ?> </TITLE>
<HEAD>
<?
echo "<meta http-equiv='Refresh' content='2;URL=http://".$ip."/cgi-bin/httpd-log.sh'";
?>
</HEAD>
<BODY>
<form name="leerficherolog" action="" method="GET">
<table>
<tr>
<?php
$nombreordenador=$_GET["nombreordenador"];
echo "<td> Log del equipo ". $nombreordenador ." con ip " . $ip ." </td> ";
?>
</tr>
</table>
<TEXTAREA NAME="contenido" ROWS="50" COLS="150" >
<?php
$fp = "/opt/opengnsys/log/clients/" . $ip . ".log";
#echo exec('tail -n 50 ' . $fp);
$handle = popen("tail " . $fp ." 2>&1", 'r');
while(!feof($handle)) {
$buffer = fgets($handle);
echo "$buffer";
ob_flush();
flush();
}
pclose($handle);
?>
</TEXTAREA>
</form>
</BODY>
</HTML>
|