I can't access the internet via the shell in proxmox

postexodus

New Member
Apr 6, 2022
2
0
1
auto lo
iface lo inet loopback

iface eno2 inet manual

iface eno1 inet manual

iface eno3 inet manual

iface eno4 inet manual

auto vmbr0
iface vmbr0 inet static
address 192.168.1.3/24
gateway 192.168.1.1
bridge-ports eno2
bridge-stp off
bridge-fd 0

auto vmbr1
iface vmbr1 inet manual
bridge-ports none
bridge-stp off
bridge-fd 0
#PF LAN
 
Hi,

As far as I see, the network config looks good, I would check the resolv.conf in PVE server if correct to narrow down the issue please try ping 8.8.8.8 and its DNS (ping google.com).
 
Hi,

As far as I see, the network config looks good, I would check the resolv.conf in PVE server if correct to narrow down the issue please try ping 8.8.8.8 and its DNS (ping google.com).
Hi,
You are correct this is a DNS issue! What should my reslov.conf look like?
 
Point it to the IP our your local DNS server (for example your router) or use a public DNS server (like 1.1.1.1 or 8.8.8.8):
Code:
search localdomain
nameserver 192.168.0.1
 
  • Like
Reactions: postexodus