Hi,
My understanding of network bridges is not great and I have done the following setup but I'm not sure how to now add firewall protection to my proxmox box. Any advice would be appreciated.
My setup:
Proxmox installed on a Physical Machine with 2 physical NIC's and configured to use eth0 bridged to vmbr0 for LAN and eth1 bridged to vmbr1 for WAN.
Virtual Machine installed in proxmox to be a Firewall and VPN server. Shorewall installed as the firewall and configured to provide NAT for the LAN.
All of the above is working fine however I'm aware that this configuration is not protecting the proxmox server itself.
How can I ensure that WAN traffic is passed through/between eth1 to vmbr1 without proxmox being exposed to the traffic?
WAN is an ADSL router with IP 192.168.0.1 setup to DMZ to all traffic to 192.168.0.254
Proxmox network configuration settings:
My understanding of network bridges is not great and I have done the following setup but I'm not sure how to now add firewall protection to my proxmox box. Any advice would be appreciated.
My setup:
Proxmox installed on a Physical Machine with 2 physical NIC's and configured to use eth0 bridged to vmbr0 for LAN and eth1 bridged to vmbr1 for WAN.
Virtual Machine installed in proxmox to be a Firewall and VPN server. Shorewall installed as the firewall and configured to provide NAT for the LAN.
All of the above is working fine however I'm aware that this configuration is not protecting the proxmox server itself.
How can I ensure that WAN traffic is passed through/between eth1 to vmbr1 without proxmox being exposed to the traffic?
WAN is an ADSL router with IP 192.168.0.1 setup to DMZ to all traffic to 192.168.0.254
Proxmox network configuration settings:
Code:
[FONT=courier new]# network interface settings
auto lo
iface lo inet loopback
iface eth0 inet manual
iface eth1 inet manual
auto vmbr0
iface vmbr0 inet static
address 10.0.0.10
netmask 255.0.0.0
network 10.0.0.0
broadcast 10.255.255.255
gateway 10.0.0.1
bridge_ports eth0
bridge_stp off
bridge_fd 0
auto vmbr1
iface vmbr1 inet static
address 192.168.0.254
netmask 255.255.255.0
network 192.168.0.0
broadcast 192.168.0.255
gateway 192.168.0.1
bridge_ports eth1
bridge_stp off
bridge_fd 0[/FONT]
Last edited: