Network Interfaces

Physical and virtual interfaces management

Physical Interfaces

Wired network interfaces configuration

@if ($interfaces != "-1")
@foreach($interfaces as $interface) @if ($interface['type'] != "wlan") @endif @endforeach
# Interface Type MAC Address MTU Connection Status
{{ $interface['.id'] }} {{ $interface['name'] }} {{ $interface['type'] }} {{ isset($interface['mac-address']) ? $interface['mac-address'] : "-" }} {{ $interface['mtu'] }} ({{ isset($interface['actual-mtu']) ? $interface['actual-mtu'] : "-" }}) @if ($interface['running'] == "true") Connected @else Disconnected @endif @if ($interface['disabled']=="false") Enabled @else Disabled @endif
@else

Connection Error

Failed to load interface information.

{{ $conn_error }}

@endif

Wireless Interfaces

Wi-Fi networks and access points

@if ($wireless != "-1")
@foreach($wireless as $wifi) @endforeach
# Interface SSID Mode Security Band Connection Status
{{ $wifi['.id'] }} {{ $wifi['name'] }} {{ $wifi['ssid'] }} {{ $wifi['mode'] }} {{ $wifi['security-profile'] }} {{ isset($wifi['band']) ? $wifi['band'] : '-' }} @if ($wifi['running'] == "true") Connected @else Disconnected @endif @if ($wifi['disabled']=="false") Enabled @else Disabled @endif
@else

Connection Error

Failed to load wireless information.

{{ $conn_error }}

@endif