Alerting question on multi-homed bro box

We have bro configured to span a firewall, so we are watching the outside traffic, both inbound and outbound, as well as the internal interface both in and out. We're doing this as a sanity check to verify that, when attacks occur, if they penetrate and are successful.

One thing that I'm seeing is that, for example, we can successful triggers like IRC nickname changes, occur with the server & outside IP address, but we don't see an equivalent trigger on the internal interface.

Consider the following alarm:

t=1177511147.420130 no=SensitiveSignature na=NOTICE_ALARM_ALWAYS sa=A.B.C.D sp=1145/tcp da=E.F.G.H dp=6667/tcp file=s2b-542-10 msg=A.B.C.D:\ CHAT\ IRC\ nick\ change sub=NICK\ Homerpf|CHAMP^J tag=@29

where A.B.C.D is one of the outside IP's associated with either the NAT or PAT range on our firewall. Should I also not see an equivalent trigger like:

t=1177511147.420130 no=SensitiveSignature na=NOTICE_ALARM_ALWAYS sa=192.168.x.x sp=1145/tcp da=E.F.G.H dp=6667/tcp file=s2b-542-10 msg=192.168.x.x:\ CHAT\ IRC\ nick\ change sub=NICK\ Homerpf|CHAMP^J tag=@29

Where the source is the IP of the internal machine? If not, is there any way we can configure bro to show those internal entries, since it will help us find machines that are acting in a naughty manner.

Thanks,

-Eric

Eric Wages

To make sure I understand the scenario correctly: you have a single Bro
that has NICs to passively monitor both sides of your firewall, *and* the
firewall does NAT, so in fact across the two NICS Bro sees two distinct
connections rather than redundant packets for the same connections - is
that right?

If so, then I'm puzzled by the problem you're seeing. The first step
in debugging it would be to capture traces using both NICs (say using
two instances of tcpdump, one reading each NIC) and then

  bro -r trace1 -r trace2

to process them together and see whether the same behavior manifests.
If it does, the next thing would be to merge thet traces (easiest
with ipsumdump --collate) and see whether the behavior still manifiests
from the single trace.

    Vern