I am sort of stumped on this.
My layout will be the following:
one subnet 192.168.0.0 255.255.255.0 whereas each computer on that subnet has 2 interfaces and it is statically assigned. GW will be a router with DHCP/DNS disabled at 192.168.0.254.
The second interface will have a subnet based on the last digit of the statically assigned first subnet whereas: NIC1: 192.168.0.1 NIC2: 192.168.1.1 (255.255.255.0) NIC1: 192.168.0.2 NIC2: 192.168.2.1 (255.255.255.0) and so on.
On Nic2 will be running a software DHCP server.
My issue is this: I want all computers on all the NIC2 subnets to communicate to the master subnet of 192.168.0.X, and vice versa.
What is the best way to do this? Additionally the hardware MUST be configurable via REST or otherwise. So I cannot really hookup a router with static routes for each one of these because that's not really configurable programmatically. I CAN however use managed switches for this since CISCO makes a rather cheap managed switch that handles REST API requests.
I have considered bridging NIC 1 and NIC 2 but the issue is I would need to block DHCP packets from leaving the NIC 2 network. This doesn't seem possible with the limited windows network bridge.
Open to any suggestions!
Thanks, Dan