I want to have all traffic that goes through my firewall logged for a short period of time. I created a small script that I thought had worked to do just that in the past. I can’t figure out why it is not logging all traffic. Here are my rules:
ipchains -F
ipchains -P input ACCEPT
ipchains -P output ACCEPT
ipchains -P forward ACCEPT
ipchains -A input -j ACCEPT -l
ipchains -A output -j ACCEPT -l
ipchains -A forward -j ACCEPT -l
I want everything to go through, yet I want it to log everything as well. Right now everything goes through, yet nothing is logged. Thanks for any help you can provide.