I installed proxmox on my server, after initial configuration, I made a debian VM for a docker. After trying to create a container I found out that there's problem with a dns. PVE Host is able to resolve the
after checking logs on my router there's no info about this query (from the rest of the devices on my network there are logs)
I assume proxmox is blocking dns but I had no luck with trying to fix it
Here's proxmox
Here's my VM
Thank you for any suggestions.
ping google.com
, but VM is not able. After trying nslookup google.com
on a VM I got this;
Code:
nslookup google.com
;; communications error to 192.168.0.1#53: connection refused
;; communications error to 192.168.0.1#53: connection refused
;; communications error to 192.168.0.1#53: connection refused
;; no servers could be reached
I assume proxmox is blocking dns but I had no luck with trying to fix it
Here's proxmox
/etc/network/interfaces
;
Code:
source /etc/network/interfaces.d/*
auto lo
iface lo inet loopback
auto enp1s0
iface enp1s0 inet manual
iface enp2s0 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.0.20/24
gateway 192.168.0.1
bridge-ports enp1s0
bridge-stp off
bridge-fd 0
/etc/resolv.conf
;
Code:
nameserver 192.168.0.1
Here's my VM
/etc/network/interfaces
;
Code:
source /etc/network/interfaces.d/*
# The loopback network interface
auto lo
iface lo inet loopback
# The primary network interface
allow-hotplug ens18
iface ens18 inet dhcp
/etc/resolv.conf
;
Code:
domain lan
search lan
nameserver 192.168.0.1
Thank you for any suggestions.