{"id":526,"date":"2018-04-18T02:02:43","date_gmt":"2018-04-18T07:02:43","guid":{"rendered":"https:\/\/linuxhostsupport.com\/blog\/?p=526"},"modified":"2018-05-07T01:18:12","modified_gmt":"2018-05-07T06:18:12","slug":"how-to-install-bro-on-ubuntu-16-04","status":"publish","type":"post","link":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bro-on-ubuntu-16-04\/","title":{"rendered":"How to Install Bro on Ubuntu 16.04"},"content":{"rendered":"<div id=\"linux-3113575275\" class=\"linux-before-1st-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1339&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340090_NVMeGoogleAds_728x90_041322-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div><p>Bro is an open-source highly-stateful network analysis framework. Although it&#8217;s mainly focused on network security monitoring, it provides a platform for general network traffic analysis as well. Bro is the monitoring backbone for many universities, research labs and supercomputing data-centers around the world. It is developed by Vern Paxson along with a team of researchers at the International Computer Science Institute in Berkeley and the National Center for Supercomputing Applications in Urbana-Champaign. Today we are going to show you how to install Bro on an Ubuntu 16.04 VPS.<\/p>\n<p><!--more--><\/p>\n<h2>1. Upgrade the system<\/h2>\n<p>As usual make sure that your Ubuntu 16.04 server is up-to-date by running the following commands:<\/p>\n<pre># apt-get upgrade &amp;&amp; apt-get update<\/pre>\n<h2>2. Install the Maxmind GeoIP Database<\/h2>\n<p>Bro needs an IP address Geolocation database to function, download both IPv4 and IPv6 databases:<\/p>\n<pre># wget http:\/\/geolite.maxmind.com\/download\/geoip\/database\/GeoLiteCity.dat.gz\r\n# wget http:\/\/geolite.maxmind.com\/download\/geoip\/database\/GeoLiteCityv6-beta\/GeoLiteCityv6.dat.gz<\/pre>\n<p>Extract both archives:<\/p>\n<pre># gzip -d GeoLiteCity.dat.gz\r\n# gzip -d GeoLiteCityv6.dat.gz<\/pre>\n<p>Create the &#8216;\/usr\/share\/GeoIP&#8217; directory and move the files in it:<\/p>\n<pre># mkdir \/usr\/share\/GeoIP\r\n# mv GeoLiteCity.dat \/usr\/share\/GeoIP\/GeoIPCity.dat\r\n# mv GeoLiteCityv6.dat \/usr\/share\/GeoIP\/GeoIPCityv6.dat<\/pre>\n<h2>3. Install Bro on Ubuntu 16.04<\/h2>\n<p>First we will start by installing the pre-requisite packages for Bro:<\/p>\n<pre># apt-get install git cmake make gcc g++ flex bison libpcap-dev libssl-dev python-dev swig zlib1g-dev<\/pre>\n<p>Now download the latest Bro version from the site which at the time of writing is version 2.5.3:<\/p>\n<pre># wget https:\/\/www.bro.org\/downloads\/bro-2.5.3.tar.gz<\/pre>\n<p>Extract the archive:<\/p>\n<pre># tar xzvf bro-2.5.3.tar.gz<\/pre>\n<p>Now enter the &#8216;bro-2.5.3&#8217; directory and run configure:<\/p>\n<pre># cd bro-2.5.3\r\n# .\/configure<\/pre>\n<p>After &#8216;configure&#8217; has finished preparing the build, run the following command:<\/p>\n<pre># make<\/pre>\n<p>Now &#8216;make&#8217; should have built Bro from source, run the following command to install bro:<\/p>\n<pre># make install<\/pre>\n<p>Bro should be installed in the &#8216;\/usr\/local\/bro&#8217; directory now.<\/p>\n<h2>4. Configure Bro<\/h2>\n<p>Let&#8217;s configure the mail notification settings first, to do that open the following file with your favorite editor(we&#8217;ll use nano):<\/p>\n<pre># nano \/usr\/local\/bro\/etc\/broctl.cfg<\/pre>\n<p>Find the &#8216;Mail Options&#8217; section, and edit the &#8216;MailTo&#8217; setting:<\/p>\n<pre># Recipient address for emails sent out by Bro and BroControl\r\nMailTo = admin@rosehosting.com<\/pre>\n<p>Save and close the file.<br \/>\nNow we need to make sure that Bro is operating on the correct network interface, to do that open the following file with your favorite editor:<\/p>\n<pre># nano \/usr\/local\/bro\/etc\/node.cfg<\/pre>\n<p>Find the &#8216;[bro]&#8217; section, it should look something like this:<\/p>\n<pre>[bro]\r\ntype=standalone\r\nhost=localhost\r\ninterface=eth0\r\n<\/pre>\n<p>Make sure that the &#8216;interface&#8217; setting is set to the public interface on your server.<br \/>\nThe last step is to configure the networks Bro will monitor, to do that open the following file:<\/p>\n<pre># nano \/usr\/local\/bro\/etc\/networks.cfg<\/pre>\n<p>You should see the following contents:<\/p>\n<pre># List of local networks in CIDR notation, optionally followed by a\r\n# descriptive tag.\r\n# For example, \"10.0.0.0\/8\" or \"fe80::\/64\" are valid prefixes.\r\n\r\n10.0.0.0\/8          Private IP space\r\n172.16.0.0\/12       Private IP space\r\n192.168.0.0\/16      Private IP space\r\n<\/pre>\n<p>Delete the three examples and add your own subnet entries like in the following example:<\/p>\n<pre>10.20.30.0\/24       Private IP space\r\n10.20.31.0\/24       Private IP space<\/pre>\n<h2>5. Managing Bro<\/h2>\n<p>Managing Bro is mostly done with the &#8216;broctl&#8217; command, in order to access this command without providing the full path each time, we will add the following content to the bottom of the &#8216;~\/.bashrc&#8217; file:<\/p>\n<pre># nano ~\/.bashrc\r\n\r\nPATH=$PATH:\/usr\/local\/bro\/bin\r\n<\/pre>\n<p>Restart the session by logging out and logging in to the server again.<br \/>\nNow you can check the status of Bro by running the following command:<\/p>\n<pre># broctl status\r\n\r\nName         Type       Host          Status    Pid    Started\r\nbro          standalone localhost     running   27534   12 Apr 13:42:19\r\n<\/pre>\n<p>You can also run the following command to list the various options &#8216;broctl&#8217; offers:<\/p>\n<pre># broctl help\r\n\r\nBroControl Version 1.7\r\n\r\n  capstats [] []      - Report interface statistics with capstats\r\n  check []                  - Check configuration before installing it\r\n  cleanup [--all] []        - Delete working dirs (flush state) on nodes\r\n  config                           - Print broctl configuration\r\n  cron [--no-watch]                - Perform jobs intended to run from cron\r\n  cron enable|disable|?            - Enable\/disable \"cron\" jobs\r\n  deploy                           - Check, install, and restart\r\n  df []                     - Print nodes' current disk usage\r\n  diag []                   - Output diagnostics for nodes\r\n  exec                  - Execute shell command on all hosts\r\n  exit                             - Exit shell\r\n  install                          - Update broctl installation\/configuration\r\n  netstats []               - Print nodes' current packet counters\r\n  nodes                            - Print node configuration\r\n  peerstatus []             - Print status of nodes' remote connections\r\n  print  []             - Print values of script variable at nodes\r\n  process  [] [-- ] - Run Bro (with options and scripts) on trace\r\n  quit                             - Exit shell\r\n  restart [--clean] []      - Stop and then restart processing\r\n  scripts [-c] []           - List the Bro scripts the nodes will load\r\n  start []                  - Start processing\r\n  status []                 - Summarize node status\r\n  stop []                   - Stop processing\r\n  top []                    - Show Bro processes ala top\r\n  update []                 - Update configuration of nodes on the fly\r\n\r\nCommands provided by plugins:\r\n\r\n  ps.bro []                 - Show Bro processes on nodes' systems\r\n<\/pre>\n<p>That&#8217;s it now you should have successfully installed and configured Bro on your Ubuntu 16.04 server.<\/p>\n<p>Of course you don\u2019t have to\u00a0Install Bro on your Ubuntu 16.04 server, if you use one of our <a href=\"https:\/\/linuxhostsupport.com\">Linux server support services<\/a>, in which case you can simply ask our expert Linux admins to setup this for you. They are available 24&#215;7 and will take care of your request immediately.<\/p>\n<p><strong><span style=\"color: #ff0000;\">PS<\/span><\/strong>. If you liked this post, on How To Install Bro on Ubuntu 16.04, please share it with your friends on the social networks using the buttons on the left or simply leave a reply below. Thanks.<\/p><div id=\"linux-2312421537\" class=\"linux-after-8th-paragraph linux-entity-placement\" style=\"margin-top: 15px;margin-bottom: 15px;\"><a href=\"https:\/\/www.rosehosting.com\/managed-vps-hosting\/?mtm_campaign=blogs&#038;mtm_source=lhs&#038;mtm_medium=blog&#038;mtm_content=managed-vps&#038;mtm_cid=1340&#038;mtm_placement=inline\" aria-label=\"Untitled\"><img src=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg\" alt=\"\"  srcset=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622.jpg 728w, https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2020\/12\/1340095_VPSGoogleAds_728x90_042622-300x37.jpg 300w\" sizes=\"(max-width: 728px) 100vw, 728px\" width=\"728\" height=\"90\"  style=\"display: inline-block;\" \/><\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>Bro is an open-source highly-stateful network analysis framework. Although it&#8217;s mainly focused on network security monitoring, it provides a platform for general network traffic analysis as well. Bro is the monitoring backbone for many universities, research labs and supercomputing data-centers around the world. It is developed by Vern Paxson along with a team of researchers [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":527,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[93,20],"class_list":["post-526","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-bro","tag-ubuntu"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Install Bro on Ubuntu 16.04 | LinuxHostSupport<\/title>\n<meta name=\"description\" content=\"Bro is an open-source highly-stateful network analysis framework. Although it&#039;s mainly focused on network security monitoring, it provides a platform for\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bro-on-ubuntu-16-04\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Install Bro on Ubuntu 16.04 | LinuxHostSupport\" \/>\n<meta property=\"og:description\" content=\"Bro is an open-source highly-stateful network analysis framework. Although it&#039;s mainly focused on network security monitoring, it provides a platform for\" \/>\n<meta property=\"og:url\" content=\"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bro-on-ubuntu-16-04\/\" \/>\n<meta property=\"og:site_name\" content=\"LinuxHostSupport\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/linuxhostsupport\" \/>\n<meta property=\"article:published_time\" content=\"2018-04-18T07:02:43+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-05-07T06:18:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-bro-on-ubuntu-16.04.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"750\" \/>\n\t<meta property=\"og:image:height\" content=\"410\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:site\" content=\"@lnxhostsupport\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bro-on-ubuntu-16-04\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bro-on-ubuntu-16-04\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"headline\":\"How to Install Bro on Ubuntu 16.04\",\"datePublished\":\"2018-04-18T07:02:43+00:00\",\"dateModified\":\"2018-05-07T06:18:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bro-on-ubuntu-16-04\\\/\"},\"wordCount\":537,\"commentCount\":2,\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bro-on-ubuntu-16-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/04\\\/how-to-install-bro-on-ubuntu-16.04.jpg\",\"keywords\":[\"bro\",\"ubuntu\"],\"articleSection\":[\"Tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bro-on-ubuntu-16-04\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bro-on-ubuntu-16-04\\\/\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bro-on-ubuntu-16-04\\\/\",\"name\":\"How to Install Bro on Ubuntu 16.04 | LinuxHostSupport\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bro-on-ubuntu-16-04\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bro-on-ubuntu-16-04\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/04\\\/how-to-install-bro-on-ubuntu-16.04.jpg\",\"datePublished\":\"2018-04-18T07:02:43+00:00\",\"dateModified\":\"2018-05-07T06:18:12+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\"},\"description\":\"Bro is an open-source highly-stateful network analysis framework. Although it's mainly focused on network security monitoring, it provides a platform for\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bro-on-ubuntu-16-04\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bro-on-ubuntu-16-04\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bro-on-ubuntu-16-04\\\/#primaryimage\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/04\\\/how-to-install-bro-on-ubuntu-16.04.jpg\",\"contentUrl\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/04\\\/how-to-install-bro-on-ubuntu-16.04.jpg\",\"width\":750,\"height\":410,\"caption\":\"how to isntall bro on ubuntu 16.04\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/how-to-install-bro-on-ubuntu-16-04\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Install Bro on Ubuntu 16.04\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/\",\"name\":\"LinuxHostSupport\",\"description\":\"Linux Tutorials and Guides\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/#\\\/schema\\\/person\\\/53a9571ea078cdf350137a1e97423cfb\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"url\":\"https:\\\/\\\/linuxhostsupport.com\\\/blog\\\/author\\\/r0s3admin\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Install Bro on Ubuntu 16.04 | LinuxHostSupport","description":"Bro is an open-source highly-stateful network analysis framework. Although it's mainly focused on network security monitoring, it provides a platform for","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bro-on-ubuntu-16-04\/","og_locale":"en_US","og_type":"article","og_title":"How to Install Bro on Ubuntu 16.04 | LinuxHostSupport","og_description":"Bro is an open-source highly-stateful network analysis framework. Although it's mainly focused on network security monitoring, it provides a platform for","og_url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bro-on-ubuntu-16-04\/","og_site_name":"LinuxHostSupport","article_publisher":"https:\/\/www.facebook.com\/linuxhostsupport","article_published_time":"2018-04-18T07:02:43+00:00","article_modified_time":"2018-05-07T06:18:12+00:00","og_image":[{"width":750,"height":410,"url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-bro-on-ubuntu-16.04.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_creator":"@lnxhostsupport","twitter_site":"@lnxhostsupport","twitter_misc":{"Written by":"admin","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bro-on-ubuntu-16-04\/#article","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bro-on-ubuntu-16-04\/"},"author":{"name":"admin","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"headline":"How to Install Bro on Ubuntu 16.04","datePublished":"2018-04-18T07:02:43+00:00","dateModified":"2018-05-07T06:18:12+00:00","mainEntityOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bro-on-ubuntu-16-04\/"},"wordCount":537,"commentCount":2,"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bro-on-ubuntu-16-04\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-bro-on-ubuntu-16.04.jpg","keywords":["bro","ubuntu"],"articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-bro-on-ubuntu-16-04\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bro-on-ubuntu-16-04\/","url":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bro-on-ubuntu-16-04\/","name":"How to Install Bro on Ubuntu 16.04 | LinuxHostSupport","isPartOf":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bro-on-ubuntu-16-04\/#primaryimage"},"image":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bro-on-ubuntu-16-04\/#primaryimage"},"thumbnailUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-bro-on-ubuntu-16.04.jpg","datePublished":"2018-04-18T07:02:43+00:00","dateModified":"2018-05-07T06:18:12+00:00","author":{"@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb"},"description":"Bro is an open-source highly-stateful network analysis framework. Although it's mainly focused on network security monitoring, it provides a platform for","breadcrumb":{"@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bro-on-ubuntu-16-04\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/linuxhostsupport.com\/blog\/how-to-install-bro-on-ubuntu-16-04\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bro-on-ubuntu-16-04\/#primaryimage","url":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-bro-on-ubuntu-16.04.jpg","contentUrl":"https:\/\/linuxhostsupport.com\/blog\/wp-content\/uploads\/2018\/04\/how-to-install-bro-on-ubuntu-16.04.jpg","width":750,"height":410,"caption":"how to isntall bro on ubuntu 16.04"},{"@type":"BreadcrumbList","@id":"https:\/\/linuxhostsupport.com\/blog\/how-to-install-bro-on-ubuntu-16-04\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/linuxhostsupport.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Install Bro on Ubuntu 16.04"}]},{"@type":"WebSite","@id":"https:\/\/linuxhostsupport.com\/blog\/#website","url":"https:\/\/linuxhostsupport.com\/blog\/","name":"LinuxHostSupport","description":"Linux Tutorials and Guides","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/linuxhostsupport.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/linuxhostsupport.com\/blog\/#\/schema\/person\/53a9571ea078cdf350137a1e97423cfb","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ed83c63a34114218f977e1f913be03906d17c7d9c800788fcac345f5edaf6cfa?s=96&d=mm&r=g","caption":"admin"},"url":"https:\/\/linuxhostsupport.com\/blog\/author\/r0s3admin\/"}]}},"_links":{"self":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/526","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/comments?post=526"}],"version-history":[{"count":2,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/526\/revisions"}],"predecessor-version":[{"id":540,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/posts\/526\/revisions\/540"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media\/527"}],"wp:attachment":[{"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/media?parent=526"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/categories?post=526"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/linuxhostsupport.com\/blog\/wp-json\/wp\/v2\/tags?post=526"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}