From 89c2a8bb562412281d1ff070007be16d5a4d8f55 Mon Sep 17 00:00:00 2001 From: Pau Escrich Date: Fri, 1 Nov 2013 22:30:02 +0100 Subject: [PATCH] luci-app-bmx6: show the IPv6 tunnels of bmx6 in the node's web page --- .../files/usr/lib/lua/luci/view/bmx6/nodes_j.htm | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/luci-app-bmx6/files/usr/lib/lua/luci/view/bmx6/nodes_j.htm b/luci-app-bmx6/files/usr/lib/lua/luci/view/bmx6/nodes_j.htm index 0435655..730fd29 100644 --- a/luci-app-bmx6/files/usr/lib/lua/luci/view/bmx6/nodes_j.htm +++ b/luci-app-bmx6/files/usr/lib/lua/luci/view/bmx6/nodes_j.htm @@ -120,6 +120,7 @@ hna6 = extensions[e].HNA6_EXTENSION; if ( extensions[e].TUN4IN6_NET_EXTENSION ) tun4in6 = extensions[e].TUN4IN6_NET_EXTENSION; + tun6in6 = extensions[e].TUN6IN6_NET_EXTENSION; } // Gateways @@ -131,6 +132,15 @@ else gateways += "
  • "+tun4in6[t].network+'/'+tun4in6[t].networklen + ' | ' + tun4in6[t].bandwidth+'
  • '; } + + for ( var t = 0; t < tun6in6.length; t++) + { + if ( tun6in6[t].networklen == "128" ) + gateways += '
  • ' + tun6in6[t].network + '
  • '; + else + gateways += "
  • "+tun6in6[t].network+'/'+tun6in6[t].networklen + ' | ' + tun6in6[t].bandwidth+'
  • '; + } + gateways += ''; //Adding HNAs with prefix=128 as main address -- 2.30.2