can't get ping to default gateway

Oct 6, 2022
2
0
1
I'm trying to connect to my proxmox server(normal desktop pc) from my laptop and my proxmox server to the internet. They are connected via ethernet and a small hub( which works perfectly fine, I can ping from my laptop the default gateway).

ip addr, ip route, ip neigh output:
proxmox-info.jpeg

do you guys have some advice?
thanks :)
 
Your bridge is down, and the single physical ethernet port isn't configured as port of the bridge..

Can you please post the full cat /etc/network/interfaces

Should probably look something like:
Code:
iface enp0s7 inet manual

auto vmbr0
iface vmbr0 inet static
    address 192.168.8.11/24
    gateway 192.168.8.1
    bridge-ports enp0s7
    bridge-stp off
    bridge-fd 0

Note the bridge-ports refering to the physical port. Once fixed run ifreload -a.
 
Thanks for your help,
you were right the /etc/network/interfaces file was configured wrong. I had an wrong interface name in there. I fixed it and ran ifreload -a. But still for some odd reason I can't get a connection to my gateway.

proxmox2.jpeg