summaryrefslogtreecommitdiffstats
path: root/admin/WebConsole/gestores/gestor_pxe_grub4dos.php
blob: a9c52f6194f450fe2eb906fbdfbce5814e253a57 (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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<?php
include_once("../includes/ctrlacc.php");
include_once("../clases/AdoPhp.php");
include_once("../clases/XmlPhp.php");
include_once("../clases/MenuContextual.php");
include_once("../clases/SockHidra.php");
include_once("../includes/constantes.php");
include_once("../includes/comunes.php");
include_once("../includes/CreaComando.php");
include_once("../idiomas/php/".$idioma."/aulas_".$idioma.".php");

$cmd=CreaComando($cadenaconexion);
if (!$cmd)
	Header('Location: '.$pagerror.'?herror=2'); // Error de conexión con servidor B.D.
//________________________________________________________________________________________________________


echo "<html>";
echo "<head>";
echo "<meta http-equiv='Refresh' content='1;URL=../principal/boot.php?idambito=". $_GET['idaula'] ."&nombreambito=" . $_GET['nombreambito'] . "&litambito=" . $_GET['litambito'] . "'>";
echo "<title> gestion de equipos </title>";
echo "<base target='principal'>";
echo "</head>";
echo "<body>";



#echo('litambito con valor:     '. $_GET['litambito']);
#echo ('idambito con valor:      ' . $_GET['idaula']);
#echo ('nombreambito con valor:      ' . $_GET['nombreambito']);

$lista = explode(";",$_POST['listOfItems']);
foreach ($lista as $sublista) {
	$elementos = explode("|",$sublista);
	$hostname=$elementos[1];
	$optboot=$elementos[0];
	ogBootServer($cmd,$optboot,$hostname,$idioma);
}
echo " </body>";
echo " </html> ";

function ogBootServer($cmd,$optboot,$hostname,$idioma) 
{	
global $cmd;
global $hostname;
global $optboot;
global $retrun;
$return="\n";
$cmd->CreaParametro("@optboot",$optboot,0);
$cmd->CreaParametro("@hostname",$hostname,0);
$cmd->texto="update ordenadores set arranque=@optboot where nombreordenador=@hostname";
$cmd->Ejecutar();
$cmd->texto="SELECT ordenadores.ip AS ip, ordenadores.mac AS mac, 
			ordenadores.netiface AS netiface, aulas.netmask AS netmask,
			aulas.router AS router, repositorios.ip AS iprepo,
			aulas.nombreaula AS grupo,
			menus.resolucion AS vga,
			perfileshard.winboot AS winboot
			FROM ordenadores 
			JOIN aulas ON ordenadores.idaula=aulas.idaula 
			JOIN repositorios ON ordenadores.idrepositorio=repositorios.idrepositorio 
			LEFT JOIN menus ON ordenadores.idmenu=menus.idmenu 
			LEFT JOIN perfileshard ON ordenadores.idperfilhard=perfileshard.idperfilhard
			WHERE ordenadores.nombreordenador='". $hostname ."'";


$rs=new Recordset; 
$rs->Comando=&$cmd; 
if (!$rs->Abrir()) echo "error";
$rs->Primero(); 
	$mac=$rs->campos["mac"];
	$netiface=$rs->campos["netiface"];
	$ip=$rs->campos["ip"];
	$router=$rs->campos["router"];
	$netmask=$rs->campos["netmask"]; 
	$repo=$rs->campos["iprepo"];   			
	$group=cleanString($rs->campos["grupo"]);
	if($rs->campos["vga"]== null || $rs->campos["vga"]== 0)
		$vga="788";
	else
		$vga=$rs->campos["vga"];
	$winboot=$rs->campos["winboot"];

$rs->Cerrar();

$cmd->texto="SELECT ipserveradm FROM entornos";
$rs=new Recordset;
$rs->Comando=&$cmd;
if (!$rs->Abrir()) echo "error";

$rs->Primero();
        $server=$rs->campos["ipserveradm"];
$rs->Cerrar();


switch ($idioma) {
    case eng:
        $idioma=en_GB;
        break;
    case esp:
        $idioma=es_ES;
        break;
    case cat:
        $idioma=ca_ES;
        break;
}


$infohost=" vga=$vga".
	  " LANG=$idioma".
	  " ip=$ip:$server:$router:$netmask:$hostname:$netiface:none" .
	  " group=$group" .
	  " ogrepo=$repo" .
	  " oglive=$repo" .
	  " oglog=$server" .
	  " ogshare=$server";
if (! empty ($winboot)) {
	  $infohost.=" winboot=$winboot";
}

###################obtenemos las variables de red del aula.

#02.1 obtenemos nombre fichero mac
$pxedir="/opt/opengnsys/tftpboot/menu.lst";
$mac=  substr($mac,0,2) . ":" . substr($mac,2,2) . ":" . substr($mac,4,2) . ":" . substr($mac,6,2) . ":" . substr($mac,8,2) . ":" . substr($mac,10,2);
$macfile="$pxedir/01-" . str_replace(":","-",strtoupper($mac));	

#controlar optboot

exec("sed -e 's/vga=...//g' -e 's/INFOHOST/$infohost/g' $pxedir/templates/$optboot > $macfile");
exec("chmod 777 $macfile");
}


function netmask2cidr($netmask) {
          $cidr = 0;
          foreach (explode('.', $netmask) as $number) {
              for (;$number> 0; $number = ($number <<1) % 256) {
                  $cidr++;
               }
           }
           return $cidr;
}

// Sustituye espacio por "_" y quita acentos y tildes.
function cleanString ($cadena) {
	$patron = array ('/ /','/á/','/é/','/í/','/ó/','/ú/','/ñ/','/Á/','/É/','/Í/','/Ó/','/Ú/','/Ñ/');
	$reemplazo = array ('_','a','e','i','o','u','n','A','E','I','O','U','N');
	return  preg_replace($patron,$reemplazo,$cadena);
}

?>