Hi all!! I have 10 interfaces and 5 bridges in one machine. How do I handle these bridges separately with iptables(and secure and safe way), for example (brg0 = eth0 + eth1, brg1 = eth2 + eth3, ...)
(Allow all outgoing traffic) =============================== iptables -A FORWARD -o eth0 -s 192.168.0/24 -j ACCEPT or iptables -A FORWARD -o brg0 -s 192.168.0/24 -j ACCEPT or iptables -A FORWARD -i eth1 -s 192.168.0/24 -j ACCEPT (Allow incoming traffic to bridged server) =============================== iptables -A FORWARD -o eth0 -p tcp -s 192.168.1.x --dport 80 -j ACCEPT or iptables -A FORWARD -o brg0 -p tcp -s 192.168.1.x --dport 80 -j ACCEPT or iptables -A FORWARD -i eth1 -p tcp -s 192.168.1.x --dport 80 -j ACCEPT I�m using bridges inside VLAN and it's great way to secure servers : ) thanks!!! Antti _______________________________________________ Bridge mailing list [EMAIL PROTECTED] http://www.math.leidenuniv.nl/mailman/listinfo/bridge
