The switch is lit up.all your interfaces are down. Check your cables.
Blockbridge : Ultra low latency all-NVME shared storage for Proxmox - https://www.blockbridge.com/proxmox
ip a
in the console, write down the interface names it is showing, then run nano /etc/network/interfaces
to edit your network config replacing all the occurances of the wrong interface with the correct ones you wrote down earlier given to you by ip a
. Then restart the network with systemctl restart networking
.Nothing. Running ip a shows enp4s0f0 as mtu 1500 qdisc mq master vmbr0 state UP group default qlen 1000, and vmbr0 is UP as well.Okay, try making the following changes in the interfaces file, save it, and reboot:
Change:
iface enp4s0
To:
iface enp4s0f0
Change:
bridge-ports enp4s0
To:
bridge-ports enp4s0f0
Okay, what we probably need to do is to establish what your router is doing. Normally, for a windows machine, it'll get addresses automatically. So, as part of that, you can find out the IP of the router, and also the netmask [this is simpler than it sounds, but tends to be made complicated a little unnecessarily. Example: 255.255.255.0 is the same as /24, and 255 means essentially, this bit does not change, but the 0 means anything in that range {so 0 to 255}. Normally, home routers are 192.168.1.0/24 or 192.168.1.0 with netmask 255.255.255.0, giving you a range of anything between 192.168.1.0 and 192.168.1.255 {really 1 to 254, but let's not overcomplicate}]
AHHH.... well, both boxes should be in the same range, and able to ping one another.I am directly connecting to the server with a switch in between.