After update to 5.0-2 DNS server won't allow zone transfer

@riess82 there is a workaround available as mentioned in the bug report

I have tested and it works.

before:

sgadmin@ns:/$ dig axfr domain.lan @ucs1.domain.lan

; <<>> DiG 9.16.1-Ubuntu <<>> axfr domain.lan @ucs1.domain.lan
;; global options: +cmd
; Transfer failed.
sgadmin@ns:/$

root@ucs1:~# vi /etc/samba/local.conf

[global]
netbios aliases = "xxxxxxxxxx"
dns zone transfer clients allow = 10.10.50.200 10.20.50.200 10.0.40.92
root@ucs1:~# /etc/init.d/bind9 restart
[ ok ] Restarting bind9 (via systemctl): bind9.service.
root@ucs1:~#
sgadmin@ns:/$ dig axfr domain.lan @ucs1.domain.lan

; <<>> DiG 9.16.1-Ubuntu <<>> axfr domain.lan @ucs1.domain.lan
;; global options: +cmd
domain.lan.              10800   IN      SOA     ucs1.domain.lan. root.domain.lan. 412 28800 7200 604800 3600
domain.lan.              900     IN      NS      ucs1.domain.lan.
domain.lan.              900     IN      NS      ucs2.domain.lan.
domain.lan.              900     IN      NS      ucs3.domain.lan.
domain.lan.              900     IN      NS      ucs4.domain.lan.
           <pruned out>
;; Query time: 12 msec
;; SERVER: 10.10.50.10#53(10.10.50.10)
;; WHEN: Mon Aug 01 08:33:30 PDT 2022
;; XFR size: 90 records (messages 1, bytes 3010)

sgadmin@ns:/$