I'm having trouble with honeyd log; it grows way too fast. I started the honeyd daemon with
honeyd -l /var/log/honeypot/honey.log -u 1000 -g 1000 -f honeyd.conf
/var/log/honeypot/honey.log is 1+ GiB log after ~4 hours.
I'm using the following honeyd.conf file:
create default
set default default tcp action block
set default default udp action block
set default default icmp action block
create windows
set windows personality "Microsoft Windows XP Professional SP1"
set windows default tcp action reset
add windows tcp port 22 "scripts/test.sh"
add windows tcp port 135 proxy $ipsrc:135
add windows tcp port 137 proxy $ipsrc:137
add windows tcp port 138 proxy $ipsrc:138
add windows tcp port 139 proxy $ipsrc:139
add windows tcp port 445 proxy $ipsrc:445
add windows tcp port 8008 "scripts/web.sh"
add windows udp port 137 proxy $ipsrc:137
add windows udp port 138 proxy $ipsrc:138
add windows udp port 445 proxy $ipsrc:445
set windows ethernet "realtek"
bind "192.168.1.6" windows
In the logs I can find that it's logging also all packets sent to 192.168.1.2, and 192.168.1.5, which are the other IPs in this Ethernet segment.
Is there any way I can filter what's being logged? I only want to log packets directed to the honeypot (192.168.1.6).
Thanks in advance.