From owner-freebsd-questions@FreeBSD.ORG Mon Jun 2 09:06:21 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 B56BA37B401 for ; Mon, 2 Jun 2003 09:06:21 -0700 (PDT) Received: from pop015.verizon.net (pop015pub.verizon.net [206.46.170.172]) by mx1.FreeBSD.org (Postfix) with ESMTP id D56B943FA3 for ; Mon, 2 Jun 2003 09:06:20 -0700 (PDT) (envelope-from cswiger@mac.com) Received: from mac.com ([129.44.60.214]) by pop015.verizon.net (InterMail vM.5.01.05.33 201-253-122-126-133-20030313) with ESMTP id <20030602160620.WDOD20810.pop015.verizon.net@mac.com>; Mon, 2 Jun 2003 11:06:20 -0500 Message-ID: <3EDB7602.8050700@mac.com> Date: Mon, 02 Jun 2003 12:06:26 -0400 From: Chuck Swiger Organization: The Courts of Chaos User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.4b) Gecko/20030507 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Bulend Malik References: <007201c328d7$8f0d9ea0$dc01a8c0@ymmaslak.com> In-Reply-To: <007201c328d7$8f0d9ea0$dc01a8c0@ymmaslak.com> X-Enigmail-Version: 0.75.0.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Authentication-Info: Submitted using SMTP AUTH at pop015.verizon.net from [129.44.60.214] at Mon, 2 Jun 2003 11:06:20 -0500 cc: questions@freebsd.org Subject: Re: macintosh problem 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: Mon, 02 Jun 2003 16:06:22 -0000 Bulend Malik wrote: [ ... ] > in other network macintosh pc's see mac 's behind my ipfw > > How can i get rid of that problem ? 33-sec# grep afp /etc/services afpovertcp 548/tcp #AFP over TCP afpovertcp 548/udp #AFP over TCP Try something like: ipfw add deny tcp from any to any 548 ipfw add deny udp from any to any 548 -Chuck