John R. Graham
2024-Oct-14 14:31 UTC
[Samba] AD/DNS: Cannot Create a CNAME record with a blank name...
On 10/14/24 10:23, Kees van Vloten via samba wrote:> > If you use Bind on the DC with bind-dlz to interface with Samba, you > can choose where to put the example.com zone. You can put it in AD > with samba-tool (as you did now) but you can also decide to host it in > Bind directly (in /etc/bind/named.conf.local). Bind has all the > options you are looking for. You just have to take care of replication > over the DCs yourself. > > - Kees. >Thanks, Kees. I'll look into that. - John
Kees van Vloten
2024-Oct-14 14:38 UTC
[Samba] AD/DNS: Cannot Create a CNAME record with a blank name...
Op 14-10-2024 om 16:31 schreef John R. Graham via samba:> On 10/14/24 10:23, Kees van Vloten via samba wrote: >> >> If you use Bind on the DC with bind-dlz to interface with Samba, you >> can choose where to put the example.com zone. You can put it in AD >> with samba-tool (as you did now) but you can also decide to host it >> in Bind directly (in /etc/bind/named.conf.local). Bind has all the >> options you are looking for. You just have to take care of >> replication over the DCs yourself. >> >> - Kees. >> > Thanks, Kees. I'll look into that. > > - JohnI forward specific domains to another dns-server, that works like this: cat /etc/bind/named.conf.local // Local configuration is here // // Consider adding the 1918 zones here, if they are not used in your organization include "/etc/bind/zones.rfc1918"; // Forward queries for specific zones zone "example.lan" { ??? type forward; ??? forward only; ??? forwarders { 192.168.100.3; 192.168.100.4; }; }; zone "100.168.192.in-addr.arpa." { ??? type forward; ??? forward only; ??? forwarders { 192.168.100.3; 192.168.100.4; }; }; dlz "samdom.com" { ???database "dlopen /usr/lib/x86_64-linux-gnu/samba/bind9/dlz_bind9_18.so"; }; I guess this could serve as a start point for your config :-) - Kees> > >
Maybe Matching Threads
- AD/DNS: Cannot Create a CNAME record with a blank name...
- AD/DNS: Cannot Create a CNAME record with a blank name...
- AD/DNS: Cannot Create a CNAME record with a blank name...
- AD/DNS: Cannot Create a CNAME record with a blank name...
- AD/DNS: Cannot Create a CNAME record with a blank name...