<gchristensen>
I've setup two subnets on my router, using two internal NICs to divide them... one on 10.5.3.x the other 10.99.99.x. I'm surprised that out of the box the machines on A and the machines on B can talk to each other. how would I shut that down?
<gchristensen>
something like:
<gchristensen>
ip46tables -A FORWARD -m state --state NEW -i ${internalWiredInterface} -o ${internalSegregatedInterface} -j DROP
<cransom>
iptables forwarding rules to block that
<gchristensen>
ip46tables -A FORWARD -m state --state NEW -i ${internalSegregatedInterface} -o ${internalWiredInterface} -j DROP
<gchristensen>
?
<gchristensen>
or maybe even drop -m state --state NEW ... ?