Hi,
Im new to proxmox and was hopping to understand and issue I ran into.
I recently purchased 3 old dells and installed proxmox on them all.
I was able to connect them into a cluster but oddly I was unable to update the packages on the first node.
I dove into it and discovered it was unable to ping the default gateway (192.168.1.1).
It should be noted that it could ping other machines in the network and I was able to access the portal on it from other machines in the network.
I added a vm to the node and from that vm was able to ping the default gateway.
I ended up changing its ip from 192.168.0.0 to 192.168.0.3 and it started working fine (after updating the host on the other machines).
My default gateway was setup with 192.168.1.1/24 which I modified to 192.168.1.1/23 but kept the DHCP server range to 192.168.1.1 - 192.168.1.254.
I did this to not upset anything on my existing network.
The hosts on all 3 nodes now look like this
With the exception of the address ip being correct the `/etc/network/interfaces` are all the same.
I want to understand why `192.168.0.0` wouldn't work, can anyone help me where
?
Im new to proxmox and was hopping to understand and issue I ran into.
I recently purchased 3 old dells and installed proxmox on them all.
I was able to connect them into a cluster but oddly I was unable to update the packages on the first node.
I dove into it and discovered it was unable to ping the default gateway (192.168.1.1).
It should be noted that it could ping other machines in the network and I was able to access the portal on it from other machines in the network.
I added a vm to the node and from that vm was able to ping the default gateway.
I ended up changing its ip from 192.168.0.0 to 192.168.0.3 and it started working fine (after updating the host on the other machines).
My default gateway was setup with 192.168.1.1/24 which I modified to 192.168.1.1/23 but kept the DHCP server range to 192.168.1.1 - 192.168.1.254.
I did this to not upset anything on my existing network.
The hosts on all 3 nodes now look like this
Code:
127.0.0.1 localhost.localdomain localhost
192.168.0.3 chopper-0.nodes.jash chopper-0
192.168.0.1 chopper-1.nodes.jash chopper-1
192.168.0.2 chopper-2.nodes.jash chopper-2
With the exception of the address ip being correct the `/etc/network/interfaces` are all the same.
Code:
cat /etc/network/interfaces
auto lo
iface lo inet loopback
iface eno2 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.0.2/23
gateway 192.168.1.1
bridge-ports eno2
bridge-stp off
bridge-fd 0
iface wlo1 inet manual
source /etc/network/interfaces.d/*
I want to understand why `192.168.0.0` wouldn't work, can anyone help me where
