From 61e565ddf0d6cf551d1ca22b58287e03e0bb6f6d Mon Sep 17 00:00:00 2001 From: Christian Dresel Date: Thu, 23 Aug 2018 12:40:06 +0200 Subject: [PATCH] fix Interface in neighbours table Signed-off-by: Christian Dresel --- index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.php b/index.php index dc603fd..c3d263e 100644 --- a/index.php +++ b/index.php @@ -69,7 +69,7 @@ } foreach ($neighbour as $temp) { $address=explode(" ",strstr($temp,"address")); - $interface=explode(" ",strstr($temp,"interface")); + $interface=explode(" ",strstr($temp,"if")); $reach=explode(" ",strstr($temp,"reach")); $rxcost=explode(" ",strstr($temp,"rxcost")); $txcost=explode(" ",strstr($temp,"txcost"));