Before I ask any questions, here's a bit of an overview:
Simple example of my network topology
What I have in the diagram is two networks segregated by a point-to-point LOS system (the "towers") and two network encryption/decryption devices on either side, each having a cipher- and plain-text NIC. From there, Switch 1 and Router have a tunnel built between each of them that run through the other devices.
Switch 1 can ping everything on both sides of the tunnel, including other devices that use the router on the left side (not shown in the diagram) as well as the plain-text side of the encrypt/decrypt device (192.168.100.1).
Switch 2 can ping everything within its network on its side of the tunnel, but nothing on the opposite side (it can't reach the router or opposite encrypt/decrypt device).
The static routes in Switch 1 are as follows:
ip route 0.0.0.0 0.0.0.0 192.168.0.1
ip route 192.168.100.2 255.255.255.255 Vlan674 192.168.0.1
Note: Vlan674 is the vlan I'm using for all ports across both switches. The vlan is also what's assigned the IP for both switches.
Again, from switch 1 I can pretty much ping everything. From switch 2 I can't route my packets (for example, the VMs) through to switch 1 so they can communicate with the far router.
Would any of you smart folks out there know what static routes I might need to build to get the VMs to talk to the router on the far side? I tried 0.0.0.0 0.0.0.0 192.168.0.2
on switch 2, to route packets to the first switch, but it doesn't seem to work. I've tried multiple static routes, but still no cigar.