Re: dynamic dns updates for clients in my home network?

2020-04-25 Thread john slee
I also encountered this requirement and created a tool to handle it. It runs as a non-privileged user and is independent of dhclient and the like. My DNS zones are hosted in AWS, so it uses their API. No other DNS providers are supported. https://github.com/jsleeio/ru1 I'm much more sysadmin

Re: dynamic dns updates for clients in my home network?

2020-04-25 Thread Bryan Stenson
I've thought about this as welland would love to use native OpenBSD tools for the job. Just a design idea: 1. Use dhcpd(8) synchronization (https://man.openbsd.org/dhcpd.8#SYNCHRONISATION) to send details of dhcp leases to a DNS creator/listener. 2. The dns creator/listener creates/updates

Re: dynamic dns updates for clients in my home network?

2020-04-25 Thread Raymond, David
I use dnsmasq (an openbsd package) on the gateway for my lab ethernet network and it works great with minimal configuration as a local DNS server. At home I have a Synology wireless router which does the same as long as you tell it to make DNS reservations. Your mileage may vary with cheaper

Re: dynamic dns updates for clients in my home network?

2020-04-25 Thread Nick Holland
On 2020-04-25 15:00, bofh wrote: > Hi, > I searched through the archives and saw a couple of discussions about using > Dnsmasq from a long time ago. > > Is that the best way to let the stuff in my home to have valid dns entries > in my home network? > > How difficult is it to get the OpenBSD

Re: dynamic dns updates for clients in my home network?

2020-04-25 Thread Allan Streib
bofh writes: > Hi, > I searched through the archives and saw a couple of discussions about > using Dnsmasq from a long time ago. > > Is that the best way to let the stuff in my home to have valid dns > entries in my home network? I've not worked with dnsmasq so can't comment on it. > How

Re: dynamic dns updates for clients in my home network?

2020-04-25 Thread kasak
OpenBSD dhcpd and unbound does not support dynamic dns. The easyest way is to install isc-dhcp-server and isc-bind  from packages. There are pretty much howtos for this setup. 25.04.2020 22:00, bofh пишет: Hi, I searched through the archives and saw a couple of discussions about using Dnsmasq

dynamic dns updates for clients in my home network?

2020-04-25 Thread bofh
Hi, I searched through the archives and saw a couple of discussions about using Dnsmasq from a long time ago. Is that the best way to let the stuff in my home to have valid dns entries in my home network? How difficult is it to get the OpenBSD provided dhcpd and unbound to do this? Thanks.