Magellan Linux

Diff of /alx-src/tags/alx-web-0_7_0_20171218_1/index.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 7996 by niro, Mon Dec 14 08:24:42 2015 UTC revision 8525 by niro, Mon Feb 8 09:59:56 2016 UTC
# Line 30  if(isset($_GET['s_krit'])) Line 30  if(isset($_GET['s_krit']))
30  function check_online($dat, $bla)  function check_online($dat, $bla)
31  {  {
32   global $comps;   global $comps;
  global $ssh_port;  
33   global $mcore_port;   global $mcore_port;
34   global $ping_timeout;   global $ping_timeout;
35   if(!isset($comps[$dat['serial']])) return false;   if(!isset($comps[$dat['serial']])) return false;
36    
  // first try mcore, then get ssh  
37   $retval = ping_host($dat['ip'],$mcore_port,$ping_timeout);   $retval = ping_host($dat['ip'],$mcore_port,$ping_timeout);
  if($retval==1) $retval = ping_host($dat['ip'],$ssh_port,$ping_timeout);  
38   if($retval==0)   if($retval==0)
39   {   {
40   $comps[$dat['serial']]['online'] = true;   $comps[$dat['serial']]['online'] = true;
# Line 73  function checkif($b) Line 70  function checkif($b)
70   else return '';   else return '';
71  }  }
72    
73  $comps = sqlarr("select client_serials.serial, client_serials.location, client_serials.mac, cfg_network.hostname, state_connected.mtime from client_serials left join cfg_network on client_serials.serial=cfg_network.serial left join state_connected on client_serials.serial=state_connected.serial", "serial");  $comps = sqlarr("select client_serials.serial, client_serials.enabled, client_serials.location, client_serials.mac, cfg_network.hostname, state_connected.mtime, state_connected.netboot from client_serials left join cfg_network on client_serials.serial=cfg_network.serial left join state_connected on client_serials.serial=state_connected.serial", "serial");
74    
75  sqlforeach('SELECT state_connected.serial, state_connected.ip, cfg_network.hostname, state_connected.mac FROM state_connected left join cfg_network on cfg_network.serial=state_connected.serial', 'check_online', null);  sqlforeach('SELECT state_connected.serial, state_connected.ip, cfg_network.hostname, state_connected.mac FROM state_connected left join cfg_network on cfg_network.serial=state_connected.serial', 'check_online', null);
76  usort($comps, 'sortcomp');  usort($comps, 'sortcomp');
# Line 123  echo '<thead><tr style="font-weight:bold Line 120  echo '<thead><tr style="font-weight:bold
120  //always enable showversion atm  //always enable showversion atm
121  $showversion = "on";  $showversion = "on";
122  if($showversion=='on') echo '<th colspan=2>version</th>';  if($showversion=='on') echo '<th colspan=2>version</th>';
123    echo '<th width=100>boot</th>';
124  echo '<th width=150>up/down</th></tr></thead><tbody>';  echo '<th width=150>up/down</th></tr></thead><tbody>';
125    
126  foreach($comps as $c)  foreach($comps as $c)
127  {  {
128   if(!$_SESSION['alx_sort_loc'][$c['location']]) Continue;   if(!$_SESSION['alx_sort_loc'][$c['location']]) Continue;
129   if($c['serial']<0 && !$_SESSION['alx_sort_loc']['DEAD']) Continue;   if($c['enabled']==0 && !$_SESSION['alx_sort_loc']['DEAD']) Continue;
130    
131   if($c['online']) $pic='online';   if($c['online']) $pic='online';
132   else $pic='offline';   else $pic='offline';
133    
134   if($c['serial']<0)   if($c['enabled']==0)
135   {   {
136   echo '<tr style="text-decoration:line-through; color:#aaaaaa">';   echo '<tr style="text-decoration:line-through; color:#aaaaaa">';
137   $pic = 'deact';   $pic = 'deact';
# Line 176  foreach($comps as $c) Line 174  foreach($comps as $c)
174   echo '<td>'.$alxutils.'</td>';   echo '<td>'.$alxutils.'</td>';
175   }   }
176    
177     //netboot state
178     if($c['netboot'] == 1) echo '<td>Netboot (PXE)</td>';
179     else echo '<td>Local Disk</td>';
180    
181   echo '<td>';   echo '<td>';
182   if($c['online'])   if($c['online'])
183   {   {

Legend:
Removed from v.7996  
changed lines
  Added in v.8525