(Sorry I created double threads, so feel free to consolidate them).
Here you go, I added the "eth1" interface in the GUI, but only NAT worked prior to that as well. My goal is to get bridging working from VM's where I manually assign a static IP outside the host system. If possible I would like to have the Proxmox host bridge eth1 too:
root@pve:~# cat /etc/network/interfaces
# 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
auto eth1
iface eth1 inet static
address 192.168.3.16
netmask 255.255.255.0
auto vmbr0
iface vmbr0 inet static
address 192.168.3.15
netmask 255.255.255.0
gateway 192.168.3.10
bridge_ports eth0
bridge_stp off
bridge_fd 0
root@pve:~#