From owner-freebsd-ipfw@FreeBSD.ORG Mon Nov 8 17:13:31 2004 Return-Path: Delivered-To: freebsd-ipfw@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7932C16A4CE for ; Mon, 8 Nov 2004 17:13:31 +0000 (GMT) Received: from smtpout.mac.com (smtpout.mac.com [17.250.248.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 578F943D1F for ; Mon, 8 Nov 2004 17:13:31 +0000 (GMT) (envelope-from cswiger@mac.com) Received: from mac.com (smtpin07-en2 [10.13.10.152]) by smtpout.mac.com (Xserve/MantshX 2.0) with ESMTP id iA8HDQd8002737; Mon, 8 Nov 2004 09:13:30 -0800 (PST) Received: from [10.1.1.245] (nfw2.codefab.com [199.103.21.225] (may be forged)) (authenticated bits=0)iA8HDOoi019038; Mon, 8 Nov 2004 09:13:25 -0800 (PST) In-Reply-To: <200411081938.56359.akhthar@carmatec.com> References: <200411081938.56359.akhthar@carmatec.com> Mime-Version: 1.0 (Apple Message framework v619) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <7F77EAA4-31A9-11D9-8097-003065ABFD92@mac.com> Content-Transfer-Encoding: 7bit From: Charles Swiger Date: Mon, 8 Nov 2004 12:13:24 -0500 To: akhthar@carmatec.com X-Mailer: Apple Mail (2.619) cc: ipfw-mailings Subject: Re: Stop firewall service X-BeenThere: freebsd-ipfw@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: IPFW Technical Discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Nov 2004 17:13:31 -0000 On Nov 8, 2004, at 9:08 AM, Akhthar Parvez. K wrote: > I am new in FreeBSD :). Could someone please tell me how to > stop/disable the > firewall service temporarily in FreeBSD. Please let me know what is the > firewall service in FreeBSD. Most probably, you are using a firewall called "IPFW". This firewall is implemented using a series of rules, and normally one adjusts specific rules rather than just turning the whole thing on or off. Still, the following will do something close: ipfw add 1 allow ip from any to any # this "disables" the firewall ...or... ipfw delete 1 # deletes the pass-all rule -- -Chuck