diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-03-13 22:15:53 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-03-13 22:15:53 +0000 |
commit | f5bfd8b75be995e7e7d106343475172a38f4802f (patch) | |
tree | 65c0b334f18b68dddc93441d53516f3b25bfc307 /modules | |
parent | 6ea0204a554536367dd762b8b96b5de57171afa9 (diff) |
modules/admin-full: move former active connections arp info to the routes overview page
Diffstat (limited to 'modules')
-rw-r--r-- | modules/admin-full/luasrc/view/admin_status/routes.htm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/modules/admin-full/luasrc/view/admin_status/routes.htm b/modules/admin-full/luasrc/view/admin_status/routes.htm index c3a0fb3a0..52a80d98d 100644 --- a/modules/admin-full/luasrc/view/admin_status/routes.htm +++ b/modules/admin-full/luasrc/view/admin_status/routes.htm @@ -29,6 +29,28 @@ $Id$ <div class="cbi-map-descr"><%:The following rules are currently active on this system.%></div> <fieldset class="cbi-section" id="cbi-table-table"> + <legend>ARP</legend> + <div class="cbi-section-node"> + <table class="cbi-section-table"> + <tr class="cbi-section-table-titles"> + <th class="cbi-section-table-cell"><%_<abbr title="Internet Protocol Version 4">IPv4</abbr>-Address%></th> + <th class="cbi-section-table-cell"><%_<abbr title="Media Access Control">MAC</abbr>-Address%></th> + <th class="cbi-section-table-cell"><%:Interface%></th> + </tr> + + <% luci.sys.net.arptable(function(e) %> + <tr class="cbi-section-table-row cbi-rowstyle-<%=(style and 1 or 2)%>"> + <td class="cbi-value-field"><%=e["IP address"]%></td> + <td class="cbi-value-field"><%=e["HW address"]%></td> + <td class="cbi-value-field"><%=e["Device"]%></td> + </tr> + <% style = not style; end) %> + </table> + </div> + </fieldset> + <br /> + + <fieldset class="cbi-section" id="cbi-table-table"> <legend><%_Active <abbr title="Internet Protocol Version 4">IPv4</abbr>-Routes%></legend> <div class="cbi-section-node"> |