I can't seem to get the last NIC on my server working just right. I have an HP Proliant server with 4 NICs currently serving as my home router. Eth0 is my WAN interface, eth1 and eth2 are setup to serve dhcp on two different subnets. Everything is working fine except for the last NIC on the server, eth3. I am wanting this to be bridged to the first subnet on eth1. I have tried numerous bridging configurations but I am doing something wrong. Here is my interfaces script found in /etc/networking, please note this is how it is currently working and have removed the bridging configurations some time ago since I have been researching this for awhile, so eth3 isn't setup at all right now.
#Loopback lo
auto lo
iface lo inet loopback
#WAN on eth0
auto eth0
iface eth0 inet dhcp
#Subnet 1 on eth1
auto eth1
iface eth1 inet static
address 192.168.1.1
netmask 255.255.255.0
broadcast 192.168.1.255
network 192.168.1.0
#subnet 2 on eth2
auto eth2
iface eth2 inet static
address 10.13.0.1
netmask 255.255.255.240
broadcast 10.13.0.15
network 10.13.0.0
#alias on eth1:0
auto eth1:0
iface eth1:0 inet static
address 192.168.1.2
netmask 255.255.255.0
broadcast 192.168.1.255
network 192.168.1.0
The Alias is for a webserver serving my internal network, it is also just a face for dnsmasq to using port 53 on.
Ubuntu Server 18.04 LTS, Netplan is disabled, using ifupdown. ISC-DHCP-SERVER serving dhcp.