Hi,
Just noticed many denylog entries in /var/log/messages :
perl -ane 'if ( /denylog/ ) { /(IN=eth[01])/; print "$1\t"; /(SPT=[0-9]+)/; print "$1\t"; /(DPT=[0-9]+)/; print "$1\n";}' /var/log/messages | sort -u
IN=eth1 SPT=10000 DPT=1063
IN=eth1 SPT=10000 DPT=1165
IN=eth1 SPT=10000 DPT=1216
IN=eth1 SPT=10000 DPT=1272
IN=eth1 SPT=10000 DPT=1390
IN=eth1 SPT=10000 DPT=1420
IN=eth1 SPT=10000 DPT=1470
IN=eth1 SPT=10000 DPT=1644
IN=eth1 SPT=23 DPT=1639
IN=eth1 SPT=5050 DPT=1035
IN=eth1 SPT=68 DPT=67
Port 10000 rings a bell as being one used by VPN.
Port 23 is telnet - looks a bit suspicious.
Port 68 is bootp - to be expected?
I think the 10000 may be people on our lan who are trying to use VPN. I suppose this message means that they are failing to do so

Some googling shows that I need to open ports 500, 4500, and 10000.
How can I do this?
Max.