");
$class = 'success';
} else {
$savemsg .= sprintf(gettext('Please check the %1$ssystem log%2$s, the wol command for %3$s (%4$s) did not complete successfully%5$s'), '', '', $description, $mac, ".
");
$class = 'warning';
}
}
}
if ($_POST || $_GET['mac']) {
unset($input_errors);
if ($_GET['mac']) {
/* normalize MAC addresses - lowercase and convert Windows-ized hyphenated MACs to colon delimited */
$_GET['mac'] = strtolower(str_replace("-", ":", $_GET['mac']));
$mac = $_GET['mac'];
$if = $_GET['if'];
} else {
/* normalize MAC addresses - lowercase and convert Windows-ized hyphenated MACs to colon delimited */
$_POST['mac'] = strtolower(str_replace("-", ":", $_POST['mac']));
$mac = $_POST['mac'];
$if = $_POST['interface'];
}
/* input validation */
if (!$mac || !is_macaddr($mac)) {
$input_errors[] = gettext("A valid MAC address must be specified.");
}
if (!$if) {
$input_errors[] = gettext("A valid interface must be specified.");
}
if (!$input_errors) {
/* determine broadcast address */
$ipaddr = get_interface_ip($if);
if (!is_ipaddr($ipaddr)) {
$input_errors[] = gettext("A valid ip could not be found!");
} else {
$bcip = gen_subnet_max($ipaddr, get_interface_subnet($if));
/* Execute wol command and check return code. */
if (!mwexec("/usr/local/bin/wol -i {$bcip} " . escapeshellarg($mac))) {
$savemsg .= sprintf(gettext("Sent magic packet to %s."), $mac);
$class = 'success';
} else {
$savemsg .= sprintf(gettext('Please check the %1$ssystem log%2$s, the wol command for %3$s did not complete successfully%4$s'), '', '', $mac, ".
");
$class = 'warning';
}
}
}
}
if ($_GET['act'] == "del") {
if ($a_wol[$_GET['id']]) {
unset($a_wol[$_GET['id']]);
write_config();
header("Location: services_wol.php");
exit;
}
}
$pgtitle = array(gettext("Services"), gettext("Wake on LAN"));
include("head.inc");
?>
=gettext("Click the MAC address to wake up an individual device.")?>
=gettext("Interface")?> | =gettext("MAC address")?> | =gettext("Description")?> | =gettext("Actions")?> |
---|---|---|---|
=convert_friendly_interface_to_friendly_descr($wolent['interface']);?> | =strtolower($wolent['mac']);?> | =htmlspecialchars($wolent['descr']);?> |