mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-22 07:30:23 +00:00
20 lines
373 B
PHP
Executable file
20 lines
373 B
PHP
Executable file
<?php
|
|
|
|
require_once 'includes/status_messages.php';
|
|
|
|
/**
|
|
*
|
|
*
|
|
*/
|
|
function DisplayNetworkingConfig()
|
|
{
|
|
|
|
$status = new StatusMessages();
|
|
|
|
exec("ls /sys/class/net | grep -v lo", $interfaces);
|
|
|
|
foreach ($interfaces as $interface) {
|
|
exec("ip a show $interface", $$interface);
|
|
}
|
|
echo renderTemplate("networking", compact("status", "interfaces"));
|
|
}
|