You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 lines
2.7 KiB

  1. Netify Agent
  2. ============
  3. Copyright ©2015-2018 eGloo Incorporated ([www.egloo.ca](https://www.egloo.ca))
  4. Deep-Packet Inspection Server
  5. -----------------------------
  6. The [Netify Agent](https://www.netify.ai/) is a deep-packet inspection server. The Agent is built on top of [nDPI](http://www.ntop.org/products/deep-packet-inspection/ndpi/) (formerly OpenDPI) to detect network protocols and applications. These detections can be saved locally, served over a UNIX or TCP socket, and/or "pushed" (via HTTP POSTs) to a remote third-party server. Flow metadata, network statistics, and detection classifications are stored using JSON encoding.
  7. Optionally, the Netify Agent can be coupled with a [Netify Cloud](https://www.netify.ai/) subscription for further cloud processing, historical storage, machine-learning analysis, event notifications, device detection/identification, along with the option (on supported platforms) to take an active role in policing/bandwidth-shaping specific network protocols and applications.
  8. Runtime Requirements
  9. --------------------
  10. Ensure that the nfnetlink and nf_conntrack_netlink kernel modules are loaded.
  11. Build Requirements
  12. ------------------
  13. Netify requires the following third-party packages:
  14. - libcurl
  15. - libjson-c
  16. - libmnl
  17. - libnetfilter-conntrack
  18. - libpcap
  19. - zlib
  20. Optional:
  21. - libtcmalloc (gperftools)
  22. Download Source
  23. ---------------
  24. When cloning the source tree, ensure you use `--recursive` to include all
  25. sub-modules.
  26. Download Packages
  27. -----------------
  28. Currently you can download binary packages for the following OS distributions:
  29. - [ClearOS](https://www.clearos.com/products/purchase/clearos-marketplace-apps#cloud)
  30. - [CentOS](http://software.opensuse.org/download.html?project=home%3Aegloo&package=netifyd)
  31. - [Debian](http://software.opensuse.org/download.html?project=home%3Aegloo&package=netifyd)
  32. - [Fedora](http://software.opensuse.org/download.html?project=home%3Aegloo&package=netifyd)
  33. - [Ubuntu](http://software.opensuse.org/download.html?project=home%3Aegloo&package=netifyd)
  34. Configuring/Building From Source
  35. --------------------------------
  36. Read the appropriate documentation in the doc directory, prefixed with: BUILD-*
  37. Generally the process is:
  38. ```
  39. # ./autogen.sh
  40. # ./configure
  41. # make
  42. ```
  43. License
  44. -------
  45. ```
  46. This program is free software: you can redistribute it and/or modify
  47. it under the terms of the GNU General Public License as published by
  48. the Free Software Foundation, either version 3 of the License, or
  49. (at your option) any later version.
  50. This program is distributed in the hope that it will be useful,
  51. but WITHOUT ANY WARRANTY; without even the implied warranty of
  52. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  53. GNU General Public License for more details.
  54. ```