2010-09-28 10:22:11 UTC
I am currently using Linksys WRT 54G 2.2 with Tomato 1.28.
there seems to be a way to telenet into router and do it in command with DD-WRT but I am looking for a much easier GUI kind of setup. Is there any router or firmware with that kind of function?
Example of the iptables command I found:
## create a new table named FIREWALL
iptables -N FIREWALL
## Add entry to FIREWALL XXX.XXX.0.0/255.255.0.0
iptables -A FIREWALL -i eth1 -s 87.3.0.0/16 -j DROP
## Route all incoming traffic through the FIREWALL
iptables -A INPUT -j FIREWALL
iptables -A FORWARD -j FIREWALL