Re: [Dnsmasq-discuss] [PATCH] DHCPv6: Honor assigning IPv6 address based on MAC address

2019-05-11 Thread Kevin Darbyshire-Bryant


> On 6 Apr 2019, at 12:01, Geert Stappers  wrote:
> 
> On Mon, Apr 01, 2019 at 01:02:20AM +0200, Pali Rohár wrote:
>> On Tuesday 12 February 2019 13:41:43 Geert Stappers wrote:
>>> On 06-02-2019 21:29, Pali Rohár wrote:
 On Friday 11 January 2019 17:52:43 Pali Rohár wrote:
> On Monday 17 December 2018 18:41:09 Pali Rohár wrote:
>> Currently IPv6 addresses are assigned to tuple (IAID, DUID). When system
>> changes IAID/DUID then old assigned IPv6 address cannot be reused, even
>> when in config file was DHCPv6 assignment based on MAC address (and not 
>> on
>> DUID).
> 
>   ...
> 
> Hello, can somebody look at this patch?
> 
> I remember that more people asked for ability to assign IPv6 address
> based on MAC address specified in config file, rather then IAID/DUID.
> 
 PING
 
>>> Another request for
>>> 
>>> Hey, could this patch get reviewed?
>>> 
>>> 
>> Hello, can somebody review this patch?
>> 
> 
> FWIW
> 
> * The (four months old) patch does get applied cleanly.
> * My compiler is happy with it
> * Executable remains running upon start ( no early crash )
> * I'm unable to test the (new) IPv6 functionality
> 
> 
> Where in the "patch pipeline" is Pali's patch?
> 
> 
> Regards
> Geert Stappers

I’ve been using this patch to tame qnap’s frustrating dhcpv6 assignment 
limitations for many months.  It’s immensely useful.


Cheers,

Kevin D-B

gpg: 012C ACB2 28C6 C53E 9775  9123 B3A2 389B 9DE2 334A

___
Dnsmasq-discuss mailing list
Dnsmasq-discuss@lists.thekelleys.org.uk
http://lists.thekelleys.org.uk/mailman/listinfo/dnsmasq-discuss


[Dnsmasq-discuss] [PATCH] dnssec: add hostname info to insecure DS warning

2019-05-11 Thread Kevin Darbyshire-Bryant
From: Kevin Darbyshire-Bryant 

Make the existing "insecure DS received" warning more informative by
reporting the domain name reporting the issue.

This may help identify a problem with a specific domain or server
configuration.

Signed-off-by: Kevin Darbyshire-Bryant 
---
 src/dnssec.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/dnssec.c b/src/dnssec.c
index 9bf43a2..5e0686c 100644
--- a/src/dnssec.c
+++ b/src/dnssec.c
@@ -873,7 +873,7 @@ int dnssec_validate_ds(time_t now, struct dns_header 
*header, size_t plen, char
   
   if (rc == STAT_INSECURE)
 {
-  my_syslog(LOG_WARNING, _("Insecure DS reply received, do upstream DNS 
servers support DNSSEC?"));
+  my_syslog(LOG_WARNING, _("Insecure DS reply received for %s, check 
domain configuration and upstream DNS server DNSSEC support"), name);
   rc = STAT_BOGUS;
 }
   
-- 
2.20.1 (Apple Git-117)

___
Dnsmasq-discuss mailing list
Dnsmasq-discuss@lists.thekelleys.org.uk
http://lists.thekelleys.org.uk/mailman/listinfo/dnsmasq-discuss