zeek/aux/broctl/policy/cluster-worker.bro
Robin Sommer 2b6ad76bd5 Creating a branch release/1.5 with the current 1.5.3 release code.
This is so that people working from the current stable version can
still start using git.
2011-03-09 15:26:01 -08:00

27 lines
658 B
Text

# $Id: cluster-worker.bro 6811 2009-07-06 20:41:10Z robin $
#
# This is the cluster WORKER top-level policy for configuration settings that are
# common to all worker node (as everything currently is except setting WORKER id).
@prefixes += cluster-worker
@load broctl
@load remote
@load trim-trace-file
@load analysis-groups
# Set up communications for updating workers.
@load listen-clear
redef listen_port_clear = BroCtl::workers[WORKER]$p;
# Give us a name.
redef peer_description = BroCtl::workers[WORKER]$tag;
# Don't do any local logging.
redef suppress_local_output = T;
# Record all packets into trace file.
redef record_all_packets = T;