Web GUI for proxmox not connecting

acecupid

New Member
Nov 12, 2022
2
0
1
Hello, I am a noob. just installed proxmox 7.2 and unable to connect to the Web GUI from another machine. tried giving IP in same range as the other machine with no luck.


/etc/network/interfaces

Code:
auto lo
iface lo inet loopback

iface eno1 inet manual

auto vmbr0
iface vmbr0 inet static
              address 10.0.0.115
              netmask 255.255.255.0
              gateway 10.0.0.1
              bridge-ports eno1
              bridge-stp off
              bridge-fd 0
              bridge-vlan-aware yes
              bridge-vids 2-4094

/etc/hosts

Code:
127.0.0.1 localhost.localdomain localhost
10.0.0.115 nodeserver.local nodeserver
 
Try this link: https://10.0.0.115:8006
People often just write http://10.0.0.115:8006 or https://10.0.0.115 and then it won't work.

So the other client got an IP between 10.0.0.2 and 10.0.0.254? Then it should work with the link above.
 
Last edited:
After checking the network status, I had to manually run the following commands to get it to work.

systemctl status networking.service
ip link show

ip link set eno1 up
ip link set vmbr0 up
ifup eno1
ifup vmbr0