VMs up but can't access gui/ping proxmox OR ping from proxmox

SamIT

New Member
Mar 14, 2024
1
0
1
https://imgur.com/a/Rh03Vja

I'm about 99% sure the networks file is misconfigured after I edited a bridge (somehow) in proxmox. What do I need to do to get the gui back up and running? Pretty sure it should be as simple as putting the IP and gateway for vmbr0/1? 2 is the new one, so it hasn't even been configured yet.

vmbr0 is 192.168.0.1 which is the WAN gateway, and br1 is 192.168.1.1/24 with a .1 gateway. I want to say I need configure the networks file as below, but would prefer to ask before I possibly make the problem worse.

auto vmbr0
iface vmbr0 inet manual
[FONT=Monaco, Menlo, Consolas, Roboto Mono, Andale Mono, Ubuntu Mono, monospace] gateway 192.168.0.1[/FONT]

auto vmbr1
iface vmbr1 inet manual
address 192.168.1.1/24
gateway 192.168.1.1

vmbr2 I figure I can configure once I have gui access again.
 

Attachments

  • photo_2024-03-13_21-01-50.jpg
    photo_2024-03-13_21-01-50.jpg
    152.4 KB · Views: 6
  • 1710389089060.png
    1710389089060.png
    945.8 KB · Views: 5
  • photo_2024-03-13_21-01-48.jpg
    photo_2024-03-13_21-01-48.jpg
    223.7 KB · Views: 5
Last edited:
Your posting is a complete mess. It appears so is your setup.

I'm going to ignore most of the mess, and just try in principal to get your PVE connected to your LAN.

I believe you're trying to connect your PVE on NIC enp1s0 to the Lan gateway 192.168.1.1 using the address of 192.168.1.2

In a nutshell, to do this start by configuring your vmbr0 correctly in the following fashion

In /etc/network/interfaces you should have:

Code:
auto lo
iface lo inet loopback

iface enp1s0 inet manual

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