From owner-freebsd-current@FreeBSD.ORG Fri May 19 12:13:02 2006 Return-Path: X-Original-To: freebsd-current@FreeBSD.org Delivered-To: freebsd-current@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1AA9416A436; Fri, 19 May 2006 12:13:02 +0000 (UTC) (envelope-from b.candler@pobox.com) Received: from proof.pobox.com (proof.pobox.com [207.106.133.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id AAE4D43D48; Fri, 19 May 2006 12:13:01 +0000 (GMT) (envelope-from b.candler@pobox.com) Received: from proof (localhost [127.0.0.1]) by proof.pobox.com (Postfix) with ESMTP id D1DD72425F; Fri, 19 May 2006 08:13:00 -0400 (EDT) Received: from mappit.local.linnet.org (212-74-113-67.static.dsl.as9105.com [212.74.113.67]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by proof.sasl.smtp.pobox.com (Postfix) with ESMTP id 761AE462DB; Fri, 19 May 2006 08:12:57 -0400 (EDT) Received: from lists by mappit.local.linnet.org with local (Exim 4.61 (FreeBSD)) (envelope-from ) id 1Fh3qi-0003UT-2k; Fri, 19 May 2006 13:12:56 +0100 Date: Fri, 19 May 2006 13:12:56 +0100 From: Brian Candler To: Ganbold Message-ID: <20060519121256.GA13356@uk.tiscali.com> References: <446D7741.10102@micom.mng.net> <20060519095344.P13833@beagle.kn.op.dlr.de> <446D7C09.3090003@micom.mng.net> <20060519081215.GO84736@cell.sick.ru> <446D80EC.3010106@micom.mng.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <446D80EC.3010106@micom.mng.net> User-Agent: Mutt/1.4.2.1i Cc: freebsd-current@FreeBSD.org, Gleb Smirnoff , Harti Brandt Subject: Re: small patch for ngctl X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 19 May 2006 12:13:02 -0000 On Fri, May 19, 2006 at 05:25:16PM +0900, Ganbold wrote: > Rec'd data packet on hook "qqqq": > 0000: ff ff ff ff ff ff 00 14 6c 2e 23 71 08 00 45 00 ........l.#q..E. > 0010: 00 4e 17 4e 00 00 80 11 a0 c6 c0 a8 00 3b c0 a8 .N.N.........;.. > 0020: 00 ff 00 89 00 89 00 3a b1 dc 80 8f 01 10 00 01 .......:........ > 0030: 00 00 00 00 00 00 20 45 4f 45 42 46 44 45 42 45 ...... EOEBFDEBE > 0040: 42 43 41 43 41 43 41 43 41 43 41 43 41 43 41 43 BCACACACACACACAC > ... > > Is it what it supposed to handle? Looks like a valid ethernet frame to me; ff:ff:ff:ff:ff:ff - destination MAC addr (broadcast) 00:14:6c:2e:23:71 - source MAC addr 0800 - protocol (IP) 45 00 - IPv4 00 4e - datagram length 17 4e 00 00 - ID, flags, frag offset 80 - TTL 11 - protocol (UDP) a0 c6 - header checksum c0 a8 00 3b - source IP: 192.168.0.59 c0 a8 00 ff - destination IP: 192.168.0.255 00 89 - source port 137 00 89 - destination port 137 00 3a - length b1 dc - UDP checksum ... - ... data So I'd say this is some Windows machine broadcasting NetBIOS crap around your network :-) Regards, Brian.