2020-11-16 19:18:51 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
require '../../includes/csrf.php';
|
|
|
|
require_once '../../includes/config.php';
|
|
|
|
|
|
|
|
$interface = $_GET['iface'];
|
|
|
|
|
|
|
|
if (isset($interface)) {
|
2020-11-26 18:15:42 +01:00
|
|
|
// fetch dnsmasq.conf settings for interface
|
2020-11-16 19:18:51 +01:00
|
|
|
exec('cat '. RASPI_DNSMASQ_PREFIX.$interface.'.conf', $return);
|
|
|
|
$conf = ParseConfig($return);
|
|
|
|
|
|
|
|
$dhcpdata['DHCPEnabled'] = empty($conf) ? false : true;
|
|
|
|
$arrRange = explode(",", $conf['dhcp-range']);
|
|
|
|
$dhcpdata['RangeStart'] = $arrRange[0];
|
|
|
|
$dhcpdata['RangeEnd'] = $arrRange[1];
|
|
|
|
$dhcpdata['RangeMask'] = $arrRange[2];
|
|
|
|
$dhcpdata['leaseTime'] = $arrRange[3];
|
|
|
|
$dhcpHost = $conf["dhcp-host"];
|
|
|
|
$dhcpHost = empty($dhcpHost) ? [] : $dhcpHost;
|
|
|
|
$dhcpdata['dhcpHost'] = is_array($dhcpHost) ? $dhcpHost : [ $dhcpHost ];
|
|
|
|
$upstreamServers = is_array($conf['server']) ? $conf['server'] : [ $conf['server'] ];
|
2020-11-17 12:18:10 +01:00
|
|
|
$dhcpdata['upstreamServersEnabled'] = empty($conf['server']) ? false: true;
|
2020-11-26 18:15:42 +01:00
|
|
|
$dhcpdata['upstreamServers'] = array_filter($upstreamServers);
|
2020-11-16 19:18:51 +01:00
|
|
|
preg_match('/([0-9]*)([a-z])/i', $dhcpdata['leaseTime'], $arrRangeLeaseTime);
|
|
|
|
$dhcpdata['leaseTime'] = $arrRangeLeaseTime[1];
|
|
|
|
$dhcpdata['leaseTimeInterval'] = $arrRangeLeaseTime[2];
|
|
|
|
if (isset($conf['dhcp-option'])) {
|
|
|
|
$arrDns = explode(",", $conf['dhcp-option']);
|
|
|
|
if ($arrDns[0] == '6') {
|
|
|
|
if (count($arrDns) > 1) {
|
|
|
|
$dhcpdata['DNS1'] = $arrDns[1];
|
|
|
|
}
|
|
|
|
if (count($arrDns) > 2) {
|
|
|
|
$dhcpdata['DNS2'] = $arrDns[2];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-11-26 18:15:42 +01:00
|
|
|
|
|
|
|
// fetch dhcpcd.conf settings for interface
|
|
|
|
$conf = file_get_contents(RASPI_DHCPCD_CONFIG);
|
2020-11-27 17:28:37 +01:00
|
|
|
preg_match('/^#\sRaspAP\s'.$interface.'\s.*?(?=\s*+$)/ms', $conf, $matched);
|
2020-11-26 18:15:42 +01:00
|
|
|
preg_match('/metric\s(\d*)/', $matched[0], $metric);
|
|
|
|
preg_match('/static\sip_address=(.*)/', $matched[0], $static_ip);
|
|
|
|
preg_match('/static\srouters=(.*)/', $matched[0], $static_routers);
|
|
|
|
preg_match('/static\sdomain_name_servers=(.*)/', $matched[0], $static_dns);
|
|
|
|
preg_match('/fallback\sstatic_'.$interface.'/', $matched[0], $fallback);
|
|
|
|
$dhcpdata['Metric'] = $metric[1];
|
|
|
|
$dhcpdata['StaticIP'] = $static_ip[1];
|
|
|
|
$dhcpdata['StaticRouters'] = $static_routers[1];
|
|
|
|
$dhcpdata['StaticDNS'] = $static_dns[1];
|
|
|
|
$dhcpdata['FallbackEnabled'] = empty($fallback) ? false: true;
|
|
|
|
|
2020-11-16 19:18:51 +01:00
|
|
|
echo json_encode($dhcpdata);
|
|
|
|
}
|