raspap-webgui/includes/networking.php

27 lines
546 B
PHP
Raw Normal View History

<?php
2020-02-15 18:57:46 +01:00
require_once 'includes/status_messages.php';
require_once 'includes/internetRoute.php';
/**
2020-02-15 18:57:46 +01:00
*
*
*/
function DisplayNetworkingConfig()
{
$status = new StatusMessages();
exec("ls /sys/class/net | grep -v lo", $interfaces);
$routeInfo = getRouteInfo(true);
$arrHostapdConf = parse_ini_file(RASPI_CONFIG.'/hostapd.ini');
$bridgedEnabled = $arrHostapdConf['BridgedEnable'];
echo renderTemplate("networking", compact(
"status",
"interfaces",
"routeInfo",
"bridgedEnabled")
);
}