Hello
I have done same as per your example with replacing 192.168.0.2/24 to my subnet IP/CIDR and gateway (same as before problem occurs) but when do this I cannot access GUI
Ok, simple troubleshooting first:
- Is the PVE node able to ping anything else on the network? -> If no, check cabling and configuration.
- Is the PVE node able to ping the router? -> If no, continue:
- Are other physical hosts able to ping PVE? Consider trying multiple.
- Are other physical hosts on the network able to ping the router? If not, then it's likely another issue outside of PVE.
Assuming the answer to #4 is yes, we should proceed to assume that the issue could be the PVE configuration.
A simple measure to ensure that your interface is appropriately configured is to run
ip a
Look for:
eno1: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc mq master vmbr0 state UP group default qlen 1000
The important parts are "state
UP" and "
master vmbr0". If these are not visible in the line, then the configuration is incorrect / possible syntax error. If they are both present, then there could be incorrect network address, subnet, or router configured. Lastly, again please check hardware.
If nothing seems to help, see if there is a DHCP server on the network and you can change:
Code:
auto vmbr0
iface vmbr0 inet static
address 192.168.0.2/24
gateway 192.168.0.1
bridge-ports eno1
bridge-stp off
bridge-fd 0
To:
Code:
auto vmbr0
iface vmbr0 inet dhcp
#address 192.168.0.2/24
#gateway 192.168.0.1
#bridge-ports eno1
#bridge-stp off
#bridge-fd 0
Cheers, best of luck with the issue.
Tmanok