b9ddns disallows updates incorrectly
Brought to you by:
schmidi2
If the Bind zone's allow-updates includes 127.0.0.1 but not localhost, than b9ddns will refuse to apply updates to the zone.
To fix this, I think line 1602 of records-lib.pl should be changed from
if ($entry eq 'any' || $entry eq 'localhost' || $entry eq 'localnets') {
to
if ($entry eq 'any' || $entry eq 'localhost' || $entry eq '127.0.0.1' || $entry eq 'localnets') {
I can be reached at hufw@msoe.edu
Bug and suggested fix confirmed here. Thanks :-)