I'm not sure when this happened, but I've noticed that in attempting to update my host, it couldn't reach the repos. I then found that it simply can't reach the internet at all, but all of my VMs / CTs can.
I can reach the host internally on my network via SSH and the Web UI.
I have checked the following:
1. My network is on the 192.168.10.x/24 subnet, and my gateway / router / firewall is 192.168.10.1
Based on this information, here is my /etc/network/interfaces file
I have the following in my /etc/resolv.conf:
And my /etc/hosts has the following:
And my /etc/hostname has the following:
To me, everything looks correct, and I don't see any reason why it wouldn't be able to reach the internet, but if you see anything, or have ideas on what else I might try, please let me know.
I can reach the host internally on my network via SSH and the Web UI.
I have checked the following:
1. My network is on the 192.168.10.x/24 subnet, and my gateway / router / firewall is 192.168.10.1
Based on this information, here is my /etc/network/interfaces file
Code:
auto lo
iface lo inet loopback
iface eno4 inet manual
iface eno3 inet manual
iface eno1 inet manual
iface eno2 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.10.253/24
gateway 192.168.10.1
bridge-ports eno1
bridge-stp off
bridge-fd 0
I have the following in my /etc/resolv.conf:
Code:
earch mcghome.localdomain
nameserver 192.168.10.1
nameserver 1.1.1.1
nameserver 1.0.0.1
And my /etc/hosts has the following:
Code:
127.0.0.1 localhost.localdomain localhost
192.168.10.253 aria.mcghome.localdomain aria
# The following lines are desirable for IPv6 capable hosts
::1 ip6-localhost ip6-loopback
fe00::0 ip6-localnet
ff00::0 ip6-mcastprefix
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters
ff02::3 ip6-allhosts
And my /etc/hostname has the following:
Code:
aria
To me, everything looks correct, and I don't see any reason why it wouldn't be able to reach the internet, but if you see anything, or have ideas on what else I might try, please let me know.