On 13 Mar 2006 18:11:37 -0800, "(E-Mail Removed)" <(E-Mail Removed)> wrote:
>However, after putting in about 45 to 50 hours of my own time over the
>weekend researching and tinkering with configuration details, syslog,
>iptables, tcpdump, and other troubleshooting details, including
>recompiling the kernel with support for other cards, nothing works.
You must be doing this the hard way
>I have set eth1-3 into promiscuous mode manually. (I used ifconfig -a
>to confirm)
Break the problem down, just enable one extra NIC and get the logging
working.
>"tcpdump -f -i eth1" (or eth2/eth3)
>shows all traffic that I want to log using IPtables, that iptables will
>not log.
INPUT + FORWARD rules only see the start (first packet) of TCP traffic,
not each packet, for that you need the mangle table.
>-A INPUT -i eth2 -j LOG --log-prefix "BANDWIDTH_2: " --log-level debug
I use 'LOG --log-level info --log-prefix "prefix "' to go to
/var/log/messages, no problem
>***SYSLOG.CONF***
....
>#log all network traffic for configuration testing
>*.=debug
>-/var/log/iptables
And I don't see a mention of iptables in my /etc/syslog.conf
Perhaps you're trying to solve too many issues at once?
Grant.
--
Testing can show the presense of bugs, but not their absence.
-- Dijkstra