I have a problem configuring my proxmox server
The server has 2 NICs and I want to connect each one to a different subnet (one for the LAN and the other one directly to the firewall for the WAN).
The "/etc/network/interfaces" file looks as follows:
With this configuration the server is able to ping "10.115.130.101" but can't ping "10.115.129.101"
Is it possible to configure the server to do want I want?
Which would be the configuration to do it?
The server has 2 NICs and I want to connect each one to a different subnet (one for the LAN and the other one directly to the firewall for the WAN).
The "/etc/network/interfaces" file looks as follows:
Code:
# network interface settings; autogenerated
# Please do NOT modify this file directly, unless you know what
# you're doing.
#
# If you want to manage part of the network configuration manually,
# please utilize the 'source' or 'source-directory' directives to do
# so.
# PVE will preserve these directives, but will NOT its network
# configuration from sourced files, so do not attempt to move any of
# the PVE managed interfaces into external files!
auto lo
iface lo inet loopback
iface eth0 inet manual
iface eth1 inet manual
auto vmbr0
iface vmbr0 inet static
address 10.115.130.154
netmask 255.255.255.0
gateway 10.115.130.101
bridge_ports eth0
bridge_stp off
bridge_fd 0
#Switch (Intranet)
auto vmbr1
iface vmbr1 inet static
address 10.115.129.154
netmask 255.255.255.0
gateway 10.115.129.101
bridge_ports eth1
bridge_stp off
bridge_fd 0
#Firewall Direct
Is it possible to configure the server to do want I want?
Which would be the configuration to do it?