On all of my Ubuntu 18.04 computers on the local network I can ping a computer on the network (we will call it hostname) by using "ping hostname" or by using "ping hostname.local". However, on another computer I just installed Ubuntu 18.04 on, "ping hostname" yeilds "Name or service not known" yet "ping hostname.local" still works. In this specific circumstance I need "ping hostname" to work. Why is this device unable to resolve hostnames without the .local file yet all other devices can? Here is my netplan file on the device. It may shed some light on the situation ``` # Let NetworkManager manage all devices on this system network: version: 2 renderer: NetworkManager ethernets: enp3s0: dhcp4: no addresses: [192.168.1.19/24] gateway4: 192.168.1.1 nameservers: addresses: [192.168.1.1, 8.8.8.8] ``` I tried adding a local search domain but it did not help