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
|
<?php
/*
* Copyright 2005-2016 OCSInventory-NG/OCSInventory-ocsreports contributors.
* See the Contributors file for more details about them.
*
* This file is part of OCSInventory-NG/OCSInventory-ocsreports.
*
* OCSInventory-NG/OCSInventory-ocsreports is free software: you can redistribute
* it and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 2 of the License,
* or (at your option) any later version.
*
* OCSInventory-NG/OCSInventory-ocsreports is distributed in the hope that it
* will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with OCSInventory-NG/OCSInventory-ocsreports. if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
* MA 02110-1301, USA.
*/
/*
* functions to use wake on line
*/
class Wol {
public $wol_send;
public function wake($mac,$ip) {
global $l;
//looking for values of wol config
$wol_info = look_config_default_values('WOL_PORT');
if (!isset($wol_info['name']['WOL_PORT'])) {
$this->wol_send = $l->g(1321);
} else
$wol_port = explode(',', $wol_info['tvalue']['WOL_PORT']);
foreach ($wol_port as $v) {
if (is_numeric($v)) {
$s = socket_create(AF_INET, SOCK_DGRAM, SOL_UDP);
if (!$s) {
@socket_close($s);
$this->wol_send = $l->g(1322);
} else {
socket_set_option($s, SOL_SOCKET, SO_BROADCAST, true);
socket_sendto($s, $this->pacquet($mac), strlen($this->pacquet($mac)), 0, $ip, $v);
socket_close($s);
$this->wol_send = $l->g(1282);
}
}
}
}
private function pacquet($Mac) {
$packet = "";
$macAddr = '';
$addrByte = explode(':', $Mac);
foreach ($addrByte as $v) {
$macAddr .= chr(hexdec($v));
}
for ($i = 0; $i < 6; $i++) {
$packet .= chr(0xFF);
}
for ($j = 0; $j < 16; $j++) {
$packet .= $macAddr;
}
//use bios password?
$wol_info = look_config_default_values('WOL_BIOS_PASSWD');
if (isset($wol_info['name']['WOL_BIOS_PASSWD'])) {
$packet .= $wol_info['tvalue']['WOL_BIOS_PASSWD'];
}
return $packet;
}
}
?>
|