diff --git a/html/includes/print-menubar.php b/html/includes/print-menubar.php
index 3c7781138..3b30a9955 100644
--- a/html/includes/print-menubar.php
+++ b/html/includes/print-menubar.php
@@ -39,6 +39,7 @@ if (isset($config['enable_bgp']) && $config['enable_bgp'])
IPv4 Search
IPv6 Search
MAC Search
+
ARP Tables
diff --git a/html/pages/search.inc.php b/html/pages/search.inc.php
index 2ca49b050..2dcebd380 100644
--- a/html/pages/search.inc.php
+++ b/html/pages/search.inc.php
@@ -2,7 +2,7 @@
$pagetitle[] = "Search";
-$sections = array('ipv4' => 'IPv4 Address', 'ipv6' => 'IPv6 Address', 'mac' => 'MAC Address');
+$sections = array('ipv4' => 'IPv4 Address', 'ipv6' => 'IPv6 Address', 'mac' => 'MAC Address', 'arp' => 'ARP Table');
if (!isset($vars['search'])) { $vars['search'] = "ipv4"; }
@@ -35,6 +35,7 @@ switch ($vars['search'])
case 'ipv4':
case 'ipv6':
case 'mac':
+ case 'arp':
include('pages/search/'.$vars['search'].'.inc.php');
break;
default: