[SOLVED] Unable to reach proxmox ve webui

fleabeard

New Member
Jun 12, 2022
19
2
3
I'm trying to move my proxmox pve server to a new network (VLAN69 - 192.168.69.1) and have changed the server IP in the webui and rebooted, but I'm still unable to access the webui using https://192.168.69.1:8006/.

1655043873231.png

One thing to note, is I'm not seeing 192.168.69.1 in my DHCP Leases for pfsense, so I'm not sure if I'm having a pfsense issue, or a proxmox issue.

The contents of my `/etc/network/interfaces` is:
Code:
auto lo
iface lo inet loopback

iface eno1 inet manual

iface eno2 inet manual

iface eno3 inet manual

iface eno4 inet manual

auto vmbr0
iface vmbro inet static
        address 192.168.69.1/24
        gateway 192.168.1.1
        bridge-ports eno1
        bridge-stp off
        bridge-fd 0

auto vmbr1
iface vmbr1 inet static
        address 10.10.10.0/24
        bridge-ports eno2
        bridge-stp off
        bridge-fd 0

The contents of my `/etc/hosts` is:
Code:
127.0.0.1 localhost.localdomain localhost
192.168.69.1 pve.R610.local pve

When doing an `ip link show` I get this:
eno1 mtu 1500 qdisc mq master vmbr0 state UP mode DEFAULT group default qlen 1000

Me pinging it from my host:
Code:
Pinging 192.168.69.1 with 32 bytes of data:
Reply from 192.168.69.1: bytes=32 time=4ms TTL=64
Reply from 192.168.69.1: bytes=32 time=3ms TTL=64
Reply from 192.168.69.1: bytes=32 time=5ms TTL=64
Reply from 192.168.69.1: bytes=32 time=4ms TTL=64

Ping statistics for 192.168.69.1:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
    Minimum = 3ms, Maximum = 5ms, Average = 4ms

What have I overlooked?

EDIT: So I managed to solve this prior to the thread being approved.
It seems as though I was using the wrong IP scheme for this. 192.168.69.1 was already in use as a gateway, so I just set my pve host to 192.168.69.2 instead and all is well now.
 
Last edited: