From owner-freebsd-questions@FreeBSD.ORG Tue Jul 8 17:07:23 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 007991065672 for ; Tue, 8 Jul 2008 17:07:22 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from smtp.infracaninophile.co.uk (gate6.infracaninophile.co.uk [IPv6:2001:8b0:151:1::1]) by mx1.freebsd.org (Postfix) with ESMTP id 5024D8FC12 for ; Tue, 8 Jul 2008 17:07:22 +0000 (UTC) (envelope-from m.seaman@infracaninophile.co.uk) Received: from happy-idiot-talk.infracaninophile.co.uk (localhost [IPv6:::1]) (authenticated bits=0) by smtp.infracaninophile.co.uk (8.14.2/8.14.2) with ESMTP id m68H79p5047047; Tue, 8 Jul 2008 18:07:13 +0100 (BST) (envelope-from m.seaman@infracaninophile.co.uk) X-DKIM: Sendmail DKIM Filter v2.6.0 smtp.infracaninophile.co.uk m68H79p5047047 DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=infracaninophile.co.uk; s=200708; t=1215536834; bh=TviOomVaRp3iVc HjAikfJPKdZk24q0z5N5jO/UkVSxE=; h=Message-ID:Date:From:MIME-Version: To:CC:Subject:References:In-Reply-To:Content-Type:Cc:Content-Type: Date:From:In-Reply-To:Message-ID:Mime-Version:References:To; z=Mes sage-ID:=20<48739EB6.4040909@infracaninophile.co.uk>|Date:=20Tue,=2 008=20Jul=202008=2018:07:02=20+0100|From:=20Matthew=20Seaman=20|Organization:=20Infracaninophile|User -Agent:=20Thunderbird=202.0.0.14=20(X11/20080607)|MIME-Version:=201 .0|To:=20Lowell=20Gilbert=20|CC:=20kalin=20m=20,=20freebsd-questions@freebsd .org|Subject:=20Re:=20ports|References:=20<4873927E.3050307@godfur. com>=20<44ej64s4e7.fsf@be-well.ilk.org>|In-Reply-To:=20<44ej64s4e7. fsf@be-well.ilk.org>|X-Enigmail-Version:=200.95.6|Content-Type:=20m ultipart/signed=3B=20micalg=3Dpgp-sha256=3B=0D=0A=20protocol=3D"app lication/pgp-signature"=3B=0D=0A=20boundary=3D"------------enigEC0F 1C5272DE6287EC0D684C"; b=ar9zhBp+EoImeOWCAsyJfCGlp1EcYHo3Q/fsF9pM4O QK8BIBeBxT63yn5bGwScdZTiNxOSRgKArEUGbwl+OcLJxeciCY3yTFP+M9wDLiAZHZA R+Y3Vz9CUavoY9XwOUe6wotfJz/BpIdHmFIIf/7bH6KpksWaDldLP/1JzMof5w= Message-ID: <48739EB6.4040909@infracaninophile.co.uk> Date: Tue, 08 Jul 2008 18:07:02 +0100 From: Matthew Seaman Organization: Infracaninophile User-Agent: Thunderbird 2.0.0.14 (X11/20080607) MIME-Version: 1.0 To: Lowell Gilbert References: <4873927E.3050307@godfur.com> <44ej64s4e7.fsf@be-well.ilk.org> In-Reply-To: <44ej64s4e7.fsf@be-well.ilk.org> X-Enigmail-Version: 0.95.6 Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="------------enigEC0F1C5272DE6287EC0D684C" X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.0 (smtp.infracaninophile.co.uk [IPv6:::1]); Tue, 08 Jul 2008 18:07:14 +0100 (BST) X-Virus-Scanned: ClamAV 0.93.1/7665/Tue Jul 8 15:35:30 2008 on happy-idiot-talk.infracaninophile.co.uk X-Virus-Status: Clean X-Spam-Status: No, score=-3.0 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VERIFIED,NO_RELAYS autolearn=ham version=3.2.5 X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on happy-idiot-talk.infracaninophile.co.uk Cc: kalin m , freebsd-questions@freebsd.org Subject: Re: ports X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 08 Jul 2008 17:07:23 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigEC0F1C5272DE6287EC0D684C Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: quoted-printable Lowell Gilbert wrote: > kalin m writes: >=20 >> brand new install of freebsd 7. some httpd and named. >> what are these? >=20 > Use sockstat(1) to find out? >=20 >> udp6 0 0 *.54168 *.* >> udp4 0 0 *.54167 *.* =20 Almost certainly named -- it appears to listen on a high numbered UDP port, but all it is is the next /source/ port for an outgoing UDP packet. You can configure named to always send packets using a fixed port number (which can be helpful for firewalling) by: query-source address 12.34.56.78 port 53; query-source-v6 address 1999:aaaa:bbbb:cccc::1 port 53; transfer-source 12.34.56.78 port 53; transfer-source-v6 1999:aaaa:bbbb:cccc::1 port 53; notify-source 12.34.56.78 port 53; notify-source-v6 1999:aaaa:bbbb:cccc::1 port 53; Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 7 Priory Courtyard Flat 3 PGP: http://www.infracaninophile.co.uk/pgpkey Ramsgate Kent, CT11 9PW --------------enigEC0F1C5272DE6287EC0D684C Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.9 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEAREIAAYFAkhznrwACgkQ8Mjk52CukIwCjgCcCFBUbV4DiCT8R1iIa9M0BQ1a tPkAnRNp0SFq+WCX46LUS+2DVZghf7Wb =2zMF -----END PGP SIGNATURE----- --------------enigEC0F1C5272DE6287EC0D684C--