On Wednesday 21 July 2004 10:42 pm, Gerry Weaver wrote: > Hello All, > > I'm having a bit of trouble setting up a linux router with two private > subnets. Each subnet can access the internet, but they cannot > communicate with each other. I've include my rules. Any and all advice > would be greatly appreciated. I believe that this rule: > iptables -t nat -A POSTROUTING -s 10.10.11.0/24 -j SNAT --to $WAN_IP would benefit from specifying that it only applies to packets leaving via $WAN_IFACE, otherwise it is going to SNAT packets from LAN1 to LAN2 and apply the source address of $WAN_IP, which is probably not what you want? > iptables -t mangle -A PREROUTING -i $LAN_IFACE1 -s > $INTERNAL_ADDRESS_RANGE1 -j ACCEPT Why are you bothering to specify ACCEPT rules in the mangle table? > iptables -t mangle -A PREROUTING -i $WAN_IFACE -s > $INTERNAL_ADDRESS_RANGE1 -j DROP I do not agree with DROPping packets in the mangle table. DROP is a filtering action, and belongs in the filter tables. > iptables -A FORWARD -p all -s $INTERNAL_ADDRESS_RANGE1 -d > $INTERNAL_ADDRESS_RANGE1 -j ACCEPT > > iptables -A FORWARD -p ALL -s $INTERNAL_ADDRESS_RANGE2 -d > $INTERNAL_ADDRESS_RANGE2 -j ACCEPT I do not understand the above two rules. Are internal address range1 and 2 the subnets on LAN1 and LAN2? If so, packets between same-subnet addresses are not going to pass through your firewall. If not, what are they? I suggest you firstly identify whether you have a routing problem or a firewalling problem. Disconnect the machine from the WAN link to the Internet, flush all rules in all tables and apply default ACCEPT policies to all chains, then see if LAN1 can communicate with LAN2. If they can, start with a simple ruleset and build up gradually so that you can find out which rule/s break the inter-LAN routing. If they cannot, then your problem is a routing problem, not netfilter, and I suggest you check the routing table on the firewall. If you want further help, please post the output of: "iptables -L -nvx; iptables -L -t nat -nvx; iptables -L -t mangle -nvx; route -n". Regards, Antony. -- If builders made buildings the way programmers write programs, then the first woodpecker to come along would destroy civilisation. Please reply to the list; please don't CC me.