Hi,
I want to configure the 2 available NICs in the server with different addresses ranges, one for all the servers and the other one for all the workstations, e.g.:192.168.32.xxx/24 for the servers and 192.168.33.xxx/24 for workstations. All the machines will have static ips.
The configuration that is working right now is as follows:
I managed to configure another Bridge using the other NIC:
However, after some minutes I was unable to login into the Proxmox website (192.168.33.104). All the servers and workstations were running without issue, but Proxmox did not even reply to ping.
What do I need to do to have the Proxmox website on the server range?.
Thanks for your time.
I want to configure the 2 available NICs in the server with different addresses ranges, one for all the servers and the other one for all the workstations, e.g.:192.168.32.xxx/24 for the servers and 192.168.33.xxx/24 for workstations. All the machines will have static ips.
The configuration that is working right now is as follows:
Code:
auto lo
iface lo inet loopback
iface eth0 inet manual
iface eth1 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.33.104
netmask 255.255.255.0
gateway 192.168.33.1
bridge-ports eth0
bridge-stp off
bridge-fd 0
I managed to configure another Bridge using the other NIC:
Code:
auto lo
iface lo inet loopback
iface eth0 inet manual
iface eth1 inet manual
auto vmbr0
iface vmbr0 inet static
address 192.168.33.104
netmask 255.255.255.0
gateway 192.168.33.1
bridge-ports eth0
bridge-stp off
bridge-fd 0
auto vmbr1
iface vmbr1 inet static
address 192.168.32.250
netmask 255.255.255.0
gateway 192.168.32.1
bridge-ports eth1
bridge-stp off
bridge-fd 0
However, after some minutes I was unable to login into the Proxmox website (192.168.33.104). All the servers and workstations were running without issue, but Proxmox did not even reply to ping.
What do I need to do to have the Proxmox website on the server range?.
Thanks for your time.