Date: Sat, 22 Nov 2003 14:20:01 +0000 From: Matthew Seaman <m.seaman@infracaninophile.co.uk> To: Mark <admin@asarian-host.net> Cc: freebsd-questions@freebsd.org Subject: Re: name server on alternate port Message-ID: <20031122142001.GA756@happy-idiot-talk.infracaninophile.co.uk> In-Reply-To: <200311221355.HAMDT1CO031456@asarian-host.net> References: <200311221355.HAMDT1CO031456@asarian-host.net>
next in thread | previous in thread | raw e-mail | index | archive | help
--r5Pyd7+fXNt84Ff3 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Nov 22, 2003 at 01:55:01PM +0000, Mark wrote: > If I want to install a second name server, on a different listening port, > how can I get the resolver libraries to consult the other port too? I want > to add rbldsnd, next to bind, for a large zone. I don't think that's really going to work. You can configure a slave server to do domain transfers on alternate ports, but that's about it. Everything else expects DNS servers to answer on port 53. You'ld be better off adding an alias address to the server and making each server bind each to it's own address. Don't know about rbldnsd(8), but for bind9 you can put entries like this within the options{} section of named.conf: listen-on { 127.0.0.1; 12.34.56.78; }; query-source address 12.34.56.78 port 53; transfer-source 12.34.56.78 port 53; notify-source 12.34.56.78 port 53; (Nb. you can change the port number that bind uses in the 'listen-on' statement but as I said above, there's not a great deal of use in doing that) See file:///usr/local/share/doc/bind9/arm/Bv9ARM.html for details. Cheers, Matthew --=20 Dr Matthew J Seaman MA, D.Phil. 26 The Paddocks Savill Way PGP: http://www.infracaninophile.co.uk/pgpkey Marlow Tel: +44 1628 476614 Bucks., SL7 1TH UK --r5Pyd7+fXNt84Ff3 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQE/v3CRdtESqEQa7a0RApeoAJ9H3qb7JwgMIOE/d8gbYxB/QAafrwCeK7xK xqkuPMoIJ/mjCDBw8vTpg4o= =dUWS -----END PGP SIGNATURE----- --r5Pyd7+fXNt84Ff3--
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20031122142001.GA756>