Unable to navigate to web UI after install

PlasmaticCrib45

New Member
Oct 29, 2025
1
0
1
Hello,

I recently purchased a MINISFORUM 795S7/129i7/790S7 AMD Ryzen 9 7940HX (790S7) / 32GB RAM + 1TB SSD+GPU RTX4060 to try and use as a home lab. After finishing the setup I am unable to visit the web UI at the address it provides in the shell. Attached is a screenshot of the ip a command and I do not see any errors but this is also my first time trying anything like this. The computer is plugged directly into my router which if from verizon. I had to enter the ip address manually and the installer did not seem to pick up network settings automatically. I have tried to use multiple ports on the router and they all have the same issue. The times the auto network setup worked it attempted to host at 192.168.100.2:8006 which is not in my DHCP range. Any help or pointers would be appreciated.
 

Attachments

  • IMG_1956.jpeg
    IMG_1956.jpeg
    854.8 KB · Views: 12
Last edited:
Please provide the following:

  • Verizon router model
  • Default gateway address of the router/nw
  • dhcp range of router
  • Output of cat /etc/network/interfaces

Why have you chosen 192.168.1.45/32 and not 192.168.1.45/24 which is a more likely (subnet mask)? I imagine you probably entered 255.255.255.255 for the Netmask during installation, instead of 255.255.255.0 . Was this intentional? What Gateway did you enter during installation?

(Note: a 255.255.255.255 subnet mask will give you 1 IP address, as shown here, so from where would you expect to access PVE from?)

Your issue is more likely associated with the router. Are you able to connect successfully other devices to the router by LAN (ethernet cable)? What addresses are they getting? What gateway & subnet mask are they showing?

Good luck.
 
Last edited:
  • Like
Reactions: apoyen
Hi PlasmaticCrib45,

welcome to the forum.
The screenshot indicates, that your pve host is listening on 192.168.1.45/32.

Try to edit the file /etc/network/interfaces
and replace the ip-address with the desired 192.168.100.2/24.

Afterwards the content file should look similar to:
Code:
auto enp4s0                                                                                                                                                                                                                                                           
iface enp4s0 inet manual

auto vmbr0
iface vmbr0 inet static
        address 192.168.100.2/24
        bridge-ports enp4s0
        bridge-stp off
        bridge-fd 0

enp4s0 is your physical interface, according the screenshot.
Anyways you need to ensure that the subnet and the netmasks are correct.

If you feel unsure, you can post your current configuration file.

BR, Lucas
 
The times the auto network setup worked it attempted to host at 192.168.100.2:8006 which is not in my DHCP range. Any help or pointers would be appreciated.
192.168.100.2 is almost always wrong and indicated that the Proxmox installer did not detect a network.
192.168.1.45 could be correct (if 192.168.1.0/24 is your local network) but the /32 (in the attached photo) is wrong and it should be 192.168.1.45/24.

EDIT: if 192.168.1.45 is inside the DHCP-range of your router then select a different one within the same subnet that is not.
 
Last edited: