Quote from: Lucid1010 on April 12, 2026, 06:21:10 PMAdmins and developers who don't prioritize privacy or censorship resistance may not find this significant.
Quote from: sopex8260 on April 12, 2026, 02:55:14 AMQuote from: Ed V. on April 10, 2026, 08:59:52 PMUpdate to v26.1.6 didn't add any new options /fields in the Kea DDNS or DHCP tabs.
https://github.com/opnsense/ports/issues/265 filed at GitHub to request the "Manual" flag.
Thank you!
Under each subnet's settings there are the DDNS options.
#!/usr/local/bin/php
<?php
require_once("interfaces.inc");
require_once("config.inc");
require_once("util.inc");
$param_error=0;
/*Default to WAN interface if none given*/
$default_if='wan';
$param_if = isset($argv[1]) ? $argv[1] : $default_if;
$system_if = get_real_interface($param_if);
if (empty($system_if)) {
$system_if = get_real_interface($default_if);
$param_error=1;
}
if (!empty($system_if)) {
$result = OPNsense\Core\Shell::shell_safe('/root/priorizeprivacy.sh %s', [$system_if]);
}
else $result=-1;
if (isset($argv[1])) return $param_error ? 2 : $result;
else
return 1;
Quote from: disorganise on April 12, 2026, 02:45:09 PMFirst confusion: I don't know what DNS servers it is using, but it doesn't appear to be anything I set.
As far as I understand, I'm using Dnsmasq and Unbound, though I don't really understand the relationship between the two.
Quote2nd confusion:Probably better to stick to one problem at at time for now :) Well worth trying to work out how your DNS is currently configured before getting the sites to query each other. Your plan for a forward from one site to the other sounds right though.
Quote from: Patrick M. Hausen on Today at 12:39:38 AMthink there is much valuable information for other/new users in this thread that should not be deleted.If all the noise could be deleted, I'd agree. But it's a mess of misunderstandings.
Quote from: Patrick M. Hausen on Today at 12:31:13 AMI only joined in lateAnd help would be appreciated, if it were needed. But it wasn't. My question was already answered with the first comment and I was done. Now I've spent all my time counteracting misunderstandings when none of it was necessary. I wonder if the mods can just delete this entire thread.