From mboxrd@z Thu Jan 1 00:00:00 1970 From: "M" Subject: Re: (no subject) Date: Fri, 28 Mar 2003 15:05:43 +0100 Sender: netfilter-admin@lists.netfilter.org Message-ID: <00a901c2f533$1f6d7700$7055e00a@Michael> References: Mime-Version: 1.0 Content-Transfer-Encoding: 7bit Return-path: Errors-To: netfilter-admin@lists.netfilter.org List-Help: List-Post: List-Subscribe: , List-Id: List-Unsubscribe: , List-Archive: Content-Type: text/plain; charset="us-ascii" To: Bryan Schmidt Cc: netfilter@lists.netfilter.org ----- Original Message ----- From: "Bryan Schmidt" To: Sent: Friday, March 28, 2003 2:31 AM Subject: (no subject) > I am getting the following message when trying to use iptable (iptable -L) > "iptables v1.2.6a: can't initialize iptables table `filter': iptables who? > (do yo > u need to insmod?) > Perhaps iptables or your kernel needs to be upgraded." > > It seems that I can't access any of the tables (filter,nat, or mangle). > Does the kernel need to be modified? How do I go about this? I am running > Debain 3.0r1 on an UtraII. > > Thanks, > > Bryan Schmidt, MCSE, MCP + Internet > Area101, Inc. > MIS Director > Often this is that ipchains is loaded in memory. Remove ipchains from memory with 'rmmod' command. Load the ip_tables module with 'insmod' or modprobe. In Red Hat it would be... # chkconfig ipchains off # chkconfig iptables on # rmmod ipchains # insmod ip_tables /Klitnan