Last night I started plugging servers into one of my VLANs (DMZ1) and can't seem to create a rule that allows them to access the Internet. Here are the lines I've added to firewall.user:
## allow DMZ1 to access internet
iptables -A FORWARD -i $DMZ1 -o $DMZ1 -j ACCEPT
[ -z "$WAN" ] || iptables -A FORWARD -i $DMZ1 -o $WAN -j ACCEPT
#[ -z "$WAN2" ] || iptables -A FORWARD -i $DMZ1 -o $WAN2 -j ACCEPT
Seems pretty straightforward, but no worky. What did I miss?
BTW - Port forwarding TO servers on DMZ1 from the Internet works fine. I just can't browse from those same servers. Suggestions?