Hi Lennert, This is the header from my iptables start script. iptables -F iptables -X iptables -Z iptables -P INPUT DROP iptables -P FORWARD DROP iptables -P OUTPUT DROP
which should flush all rules. Also the firewall flush script, #!/bin/bash ################################## ######### FLUSH FW SCRIPT ######## ################################## iptables -F iptables -X iptables -Z iptables -P INPUT ACCEPT iptables -P FORWARD ACCEPT iptables -P OUTPUT ACCEPT When I run the command iptables -L all chains show as accept,no other rules present as tou'd expect, but still no www.... Cheers, Lewis -----Original Message----- From: Lennert Buytenhek [mailto:[EMAIL PROTECTED]] Sent: Thursday, 15 November 2001 00:16 To: Lewis Shobbrook Cc: Bridge (E-mail) Subject: Re: [Bridge] Problems with pre-routing to squid. On Wed, Nov 14, 2001 at 03:00:35PM +1100, Lewis Shobbrook wrote: > When the IPTABLES are flushed > completely and all rules removed, default chains set to ALLOW, the www port > is still blocked, but only for x.x.x.x , other ports are still ok for > x.x.x.x This is impossible (in the mathematical sense). Are you sure you have flushed all tables? # iptables -F # iptables -t nat -F # iptables -t mangle -F cheers, Lennert _______________________________________________ Bridge mailing list [EMAIL PROTECTED] http://www.math.leidenuniv.nl/mailman/listinfo/bridge
