mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
19 lines
454 B
Tcsh
Executable file
19 lines
454 B
Tcsh
Executable file
#!/bin/csh -f
|
|
#
|
|
# usage start-capture-all filename
|
|
#
|
|
# e.g.: start-capture-all /usr/local/bro/bulk-trace/bulk
|
|
#
|
|
# this will generate a trace with file name filename-N
|
|
#
|
|
# note: if you run this script repeatedly with the same filename,
|
|
# spot-trace will kill the old instance, and start a new
|
|
# instance with file filename-N+1
|
|
#
|
|
|
|
# capture everything
|
|
spot-trace $* all 'tcp and udp'
|
|
|
|
# capture everything but HTTP
|
|
#spot-trace $* all 'not tcp port 80'
|
|
|