raspap-webgui-mirror/includes/networking.php

21 lines
373 B
PHP
Raw Normal View History

<?php
2020-02-15 17:57:46 +00:00
require_once 'includes/status_messages.php';
/**
2020-02-15 17:57:46 +00:00
*
*
*/
function DisplayNetworkingConfig()
{
$status = new StatusMessages();
exec("ls /sys/class/net | grep -v lo", $interfaces);
foreach ($interfaces as $interface) {
exec("ip a show $interface", $$interface);
}
2019-08-18 23:38:41 +00:00
echo renderTemplate("networking", compact("status", "interfaces"));
}