linuxSetup DNS for Linux client

As we did on the Windos VM (VM01), we will be using the server version (Ubuntu Serverarrow-up-right). Ubuntu uses as its default network manager netplan, which is a bit harder to configure than the default network manager (for example, in Debian) but it's still easy.

After installing Ubuntu Server, we can log in as root and run:

sudo nano /etc/netplan/00-installer-config.yaml

And replace it with this:

network:
    version: 2
    ethernets:
        eth0:
            addresses: [192.168.100.3/24]
            gateway4: 192.168.100.1

With that done, we apply the config.

sudo netplan apply

Now we can communicate with the domain controller!

Written by ruycr4ftarrow-up-right

Last updated