February 23, 2010 12:44 AM
Posted by: Dan O'Connor
suricata freebsd,
suricata install,
suricata install freebsdNow that Suricata will start it's time to create a rc script to control the service.
( Lets put it somewhere nice )
[code]vi /usr/local/etc/rc.d/suricata[/code]
[code]
#!/bin/sh
#
# By Dan OConnor
# PROVIDE: suricata
#
. /etc/rc.subr
name="suricata"
rcvar=${name}_enable
load_rc_config...
February 21, 2010 11:55 PM
Posted by: Dan O'Connor
suricata freebsd,
suricata install,
suricata install freebsdWith everything in place you can now start suricata.
[code]suricata -c /usr/local/etc/suricata.yaml -i em0[/code]
Got a good start.
[code]70 rule files processed. 7977 rules succesfully loaded, 5 rules failed[/code]
Here is the 5 that did not load, I only added the emerging threats...
February 20, 2010 10:33 PM
Posted by: Dan O'Connor
suricata freebsd,
suricata install,
suricata install freebsdInstallation of Suricata on FreeBSD i386.
Packages needed.
Step by step.
[code]cd /usr/ports/devel/pcre/
make install clean
cd /usr/ports/textproc/libyaml/
make install clean
cd /usr/ports/net/libnet/
make...