#!/bin/sh

echo
echo Launching the TCP, UDP and ICMP loggers...

# Log ICMP simple log and raw data
plogicmp -lw

# Log TCP simple log and raw data
# and log only packets with the URG, PSH, SYN and FIN flags on
# (SYN , stealth FIN, and Xmas URG, PSH FIN scannings)
plogtcp -lw -f 43

# Log UDP simple log and raw data
plogudp -lw

