dns

Configuring an Azure Ubuntu VM to a use a custom DNS Server

I have recently been playing around with Kerberos and was attempting to join an Azure Ubuntu VM to domain I had set up within Azure, if you’ve ever had anything to do with Active Directory you’ll know that you need to set the DNS servers of the machines you want to join to the domain to the address of the domain controller and this was no different. I thought this would be a relatively simple task however despite my best efforts I couldn’t get the Ubuntu VM to use the DNS server I configured. Here’s how to get a Azure Ubuntu VM use custom DNS Server.

When you create a VM in Azure it will create a VNet for you (or let you connect to an already existing VNet) the VNet allows all the VM’s within the VNet to communicate and also handles DNS for you, you can read more about this here. Normally this is great and makes things nice and easy however in this case it was getting in the way and even though I could ping my domain controller using it’s name I couldn’t actually ping the DNS name of the domain. After a lot of trial and error and searching I finally found a solution which worked.

Firstly edit /etc/systemd/resolved.conf and set the DNS Server and the Domain

sudo nano /etc/systemd/resolved.conf

Uncomment (remove the #) DNS and set it to your chosen DNS server and uncomment Domain and set this to your Domain address.

Now switch /etc/resolv.conf to the version provided by systemd

sudo ln -sf /run/systemd/resolve/resolv.conf /etc/resolv.conf

Now we just have to restart systemd-resolved

sudo systemctl stop systemd-resolved
sudo systemctl start systemd-resolved

That should be it. Make sure everything is still working by pinging something (I normally start with google) and then try and ping something within the VNet. If you have any questions or comments then please leave a comment below or contact me on Twitter.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.