mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
This is so that people working from the current stable version can still start using git.
31 lines
547 B
Text
31 lines
547 B
Text
# $Id: standalone.bro 6860 2009-08-14 19:01:47Z robin $
|
|
#
|
|
# Configuration for a standalone system.
|
|
|
|
@load site
|
|
|
|
@unload cluster-by-addrs
|
|
@unload cluster-by-conns
|
|
|
|
@load broctl
|
|
@load notice
|
|
@load remote
|
|
@load mail-alarms
|
|
|
|
@load trim-trace-file
|
|
@load analysis-groups
|
|
|
|
# Even a stand-alone system has to listen so that we can do remote updates.
|
|
@load listen-clear
|
|
redef listen_port_clear = BroCtl::manager$p;
|
|
|
|
# Give us a name.
|
|
redef peer_description = "bro";
|
|
|
|
# Record all packets into trace file.
|
|
redef record_all_packets = T;
|
|
|
|
@load notice
|
|
|
|
|
|
|