aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDouglas Creager2010-06-10 21:45:37 -0400
committerAdam Vandenberg2010-06-11 10:25:00 -0700
commit8b05fd2781d29281549ec2fe8485977c4f196798 (patch)
tree9656e6d07da4f726499a79828d3c24e0e78e7da2
parent0b0ad91f847cee6dd5d607522543fef898f27c37 (diff)
downloadhomebrew-8b05fd2781d29281549ec2fe8485977c4f196798.tar.bz2
SiLK 2.3.1
SiLK, the System for Internet-Level Knowledge, is a collection of traffic analysis tools developed by the CERT Network Situational Awareness Team (CERT NetSA) to facilitate security analysis of large networks. The SiLK tool suite supports the efficient collection, storage, and analysis of network flow data, enabling network security analysts to rapidly query large historical traffic data sets. SiLK is ideally suited for analyzing traffic on the backbone or border of a large, distributed enterprise or mid-sized ISP. A SiLK installation consists of two categories of applications: the packing system and the analysis suite. The packing system collects IPFIX, NetFlow v9, or NetFlow v5 and converts the data into a more space efficient format, recording the packed records into service-specific binary flat files. The analysis suite consists of tools which read these flat files and perform various query operations, ranging from per-record filtering to statistical analysis of groups of records. The analysis tools interoperate using pipes, allowing a user to develop a relatively sophisticated query from a simple beginning. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
-rw-r--r--Library/Formula/silk.rb24
1 files changed, 24 insertions, 0 deletions
diff --git a/Library/Formula/silk.rb b/Library/Formula/silk.rb
new file mode 100644
index 000000000..cdf820888
--- /dev/null
+++ b/Library/Formula/silk.rb
@@ -0,0 +1,24 @@
+require 'formula'
+
+class Silk <Formula
+ url 'http://tools.netsa.cert.org/releases/silk-2.3.1.tar.gz'
+ homepage 'http://tools.netsa.cert.org/silk/'
+ md5 'f49ca6da333e5d579347af858e6a1b83'
+
+ depends_on 'glib'
+ depends_on 'libfixbuf'
+ depends_on 'yaf'
+
+ def install
+ system "./configure",
+ "--disable-dependency-tracking",
+ "--prefix=#{prefix}",
+ "--mandir=#{man}",
+ "--enable-ipv6",
+ "--enable-data-rootdir=#{var}/silk"
+ system "make"
+ system "make install"
+
+ (var+"silk").mkpath
+ end
+end