diff --git a/etc/inc/pfsense-utils.inc b/etc/inc/pfsense-utils.inc index a65db13630..b4a41d0f8f 100644 --- a/etc/inc/pfsense-utils.inc +++ b/etc/inc/pfsense-utils.inc @@ -1272,6 +1272,12 @@ function get_interface_info($ifdescr) { else $ifinfo['ssid'] = $matches[1]; } + if (preg_match("/laggproto (.*)$/", $ici, $matches)) { + $ifinfo['laggproto'] = $matches[1]; + } + if (preg_match("/laggport: (.*)$/", $ici, $matches)) { + $ifinfo['laggport'][] = $matches[1]; + } } foreach($wifconfiginfo as $ici) { $elements = preg_split("/[ ]+/i", $ici); diff --git a/usr/local/www/status_interfaces.php b/usr/local/www/status_interfaces.php index e998ae1bb8..248667a985 100755 --- a/usr/local/www/status_interfaces.php +++ b/usr/local/www/status_interfaces.php @@ -260,6 +260,22 @@ include("head.inc"); + + + + + + + + + + + + +
+ + +