From nobody Sat Jun 08 10:24:22 2024 X-Original-To: freebsd-questions@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4VxDhD18fRz5NqxQ for ; Sat, 08 Jun 2024 10:24:28 +0000 (UTC) (envelope-from johnl@iecc.com) Received: from gal.iecc.com (gal.iecc.com [IPv6:2001:470:1f07:1126:0:43:6f73:7461]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "gal.iecc.com", Issuer "Let's Encrypt Authority X3" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 4VxDhC5XDtz4mqR for ; Sat, 8 Jun 2024 10:24:27 +0000 (UTC) (envelope-from johnl@iecc.com) Authentication-Results: mx1.freebsd.org; none Received: (qmail 83986 invoked from network); 8 Jun 2024 10:24:25 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed; d=iecc.com; h=date:message-id:from:to:cc:subject:in-reply-to:mime-version:content-type:content-transfer-encoding:cleverness; s=1481066643159.k2406; bh=IimYZ5Hrp17kpo9uAjo7Q91zoGQfsGa/dQonaPuRVsk=; b=QJncyKgy9WGPPnNa6/9b7RXVm+W964mJv/RCVVHadUEimWU+KRSvFH/FZQEBZ3b78j14g5sITX8JMIVMMnzjh2C9Lx/TZYKKa71FYktKUYQJ0QUbXorYCosM1FDk6aI/mVsZK64C5hpoc9DG/2LzIyec7nuRXInZsZs/NKYpJ8YasmLAPfyfRpd/OkFTEtufL+2BnLenVrhtzODVK3flvevVuTweHqlXLXle66sBaPNHwanjphGwXs9lb9a2L/PSoguGg4HEwPT8pTBbah3+irqLul5tqQ3sLD8o2QJG0oFcLJPB5ApooiAlkrj0Q75D9zEzSNqUVtL6G97LblkU9w== Received: from ary.iecc.com ([IPv6:2001:470:1f07:1126::78:696d:6170]) by imap.iecc.com ([IPv6:2001:470:1f07:1126::78:696d:6170]) with ESMTPS (TLS1.3 ECDHE-RSA CHACHA20-POLY1305 AEAD) via TCP6; 08 Jun 2024 10:24:24 -0000 Received: by ary.iecc.com (Postfix, from userid 501) id 73FDA8CBB587; Sat, 8 Jun 2024 12:24:22 +0200 (CEST) Date: 8 Jun 2024 12:24:22 +0200 Message-Id: <20240608102423.73FDA8CBB587@ary.iecc.com> From: "John Levine" To: freebsd-questions@freebsd.org Cc: mirror176@hotmail.com Subject: Re: local-unbound In-Reply-To: Organization: Taughannock Networks X-Headerized: yes Cleverness: minimal List-Id: User questions List-Archive: https://lists.freebsd.org/archives/freebsd-questions List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-questions@freebsd.org Sender: owner-freebsd-questions@FreeBSD.org Mime-Version: 1.0 Content-type: text/plain; charset=utf-8 Content-transfer-encoding: 8bit X-Spamd-Bar: ---- X-Rspamd-Pre-Result: action=no action; module=replies; Message is reply to one we originated X-Spamd-Result: default: False [-4.00 / 15.00]; REPLY(-4.00)[]; ASN(0.00)[asn:6939, ipnet:2001:470::/32, country:US] X-Rspamd-Queue-Id: 4VxDhC5XDtz4mqR It appears that Edward Sanford Sutton, III said: >On 6/7/24 14:44, LuMiWa wrote: >> Hi! >> >> I am using unbound from ports for recursive caching DNS, TCP port 853. >> For my need will be local-unbound more than enough and I like avoid >> applications if I included in the system. >> I didn't find so much settings for local-unbound and my question is Look at /etc/rc.d/local_unbound to see what the rc settings are: : ${local_unbound_workdir:=/var/unbound} : ${local_unbound_config:=${local_unbound_workdir}/unbound.conf} : ${local_unbound_flags:="-c ${local_unbound_config}"} : ${local_unbound_forwardconf:=${local_unbound_workdir}/forward.conf} : ${local_unbound_controlconf:=${local_unbound_workdir}/control.conf} : ${local_unbound_anchor:=${local_unbound_workdir}/root.key} : ${local_unbound_forwarders:=} : ${local_unbound_tls:=} : ${local_unbound_pidfile:=${pidfile}} If you're wondering what they do, look at the script. It's not very long.