You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
547 B
PHP

<?php
// UDP port to open socket. Usually it's port 9
$port = 9;
// Change all values below, for personal usage:
$sitename = "-- blackNET --";
$config['access-password'] = "MY_PASSWORD_TO_ACCESS";
// Network Broadcast Address:
$networkbroadcast = "192.168.1.255";
// All MAC's must be written in the form of "00:1E:8C:5B:C8:29" (Windows and Linux)!
$maclist = [
"NAS-Storage" => "00:11:32:25:A8:75",
//"HP-Proliant-dev-Server" => "28:92:4a:39:e3:62",
"HP-gen8-server" => "2c:44:fd:82:0c:bb",
//"Michael-PC" => "d0:50:99:1b:b0:98",
];
?>