From owner-freebsd-questions@FreeBSD.ORG Sun Oct 5 08:45:47 2003 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 779F516A4B3 for ; Sun, 5 Oct 2003 08:45:47 -0700 (PDT) Received: from smtp3.sentex.ca (smtp3.sentex.ca [64.7.153.18]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8DF2043FE1 for ; Sun, 5 Oct 2003 08:45:45 -0700 (PDT) (envelope-from mike@sentex.net) Received: from avscan2.sentex.ca (avscan2.sentex.ca [199.212.134.19]) by smtp3.sentex.ca (8.12.9p2/8.12.9) with ESMTP id h95FjgHr073722; Sun, 5 Oct 2003 11:45:42 -0400 (EDT) (envelope-from mike@sentex.net) Received: from localhost (localhost [127.0.0.1]) by avscan2.sentex.ca (Postfix) with ESMTP id 02D5959C89; Sun, 5 Oct 2003 11:45:45 -0400 (EDT) Received: from avscan2.sentex.ca ([127.0.0.1]) by localhost (avscan2.sentex.ca [127.0.0.1]) (amavisd-new, port 10024) with SMTP id 45734-02; Sun, 5 Oct 2003 11:45:44 -0400 (EDT) Received: from lava.sentex.ca (pyroxene.sentex.ca [199.212.134.18]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by avscan2.sentex.ca (Postfix) with ESMTP id DF99759C88; Sun, 5 Oct 2003 11:45:44 -0400 (EDT) Received: from simian.sentex.net (simeon.sentex.ca [192.168.43.27]) by lava.sentex.ca (8.12.9p1/8.12.9) with ESMTP id h95FjhdK004811; Sun, 5 Oct 2003 11:45:43 -0400 (EDT) (envelope-from mike@sentex.net) Message-Id: <6.0.0.22.0.20031005114351.07ead630@209.112.4.2> X-Sender: mdtpop@209.112.4.2 (Unverified) X-Mailer: QUALCOMM Windows Eudora Version 6.0.0.22 Date: Sun, 05 Oct 2003 11:48:51 -0400 To: "Brunoc@quipo.it" , From: Mike Tancsa In-Reply-To: <001601c38b52$4b0b0b60$3bc35e3e@computer> References: <007001c38b45$4f1b4f60$c90e5e3e@computer> <6.0.0.22.0.20031005094902.058701c0@209.112.4.2> <001601c38b52$4b0b0b60$3bc35e3e@computer> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; format=flowed X-Virus-Scanned: by Sentex Communications (avscan2/20030616p5) Subject: Re: Ping response: sendto: Permission denied X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 05 Oct 2003 15:45:47 -0000 At 11:06 AM 05/10/2003, Brunoc@quipo.it wrote: >'ipfw show' output: >65535 14 1068 deny ip from any to any ipfw show is telling you that you have one firewall rule which denys everything from everything-- hence when you ping anything you get the error. You should add to /etc/rc.conf firewall_enable="YES" # Set to YES to enable firewall functionality firewall_script="/etc/rc.firewall" # Which script to run to set up the firewall firewall_type="OPEN" # Firewall type (see /etc/rc.firewall) firewall_quiet="NO" # Set to YES to suppress rule display firewall_logging="YES" # Set to YES to enable events logging as you have it defined in your kernel. then do an 'ipfw show' and compare the output. >'kldstat' output: >Id Refs Address Size Name > 1 4 0xc0100000 2cac40 kernel > 2 1 0xc0e91000 4000 logo_saver.ko > 3 2 0xc0e96000 11000 linux.ko > 4 1 0xc0ebb000 2000 rtc.ko this tells you that you have as kernel modules, linux, screensaver and rtc loaded and not statically compiled into your kernel. ---Mike