Addressing only the cable modem:I need some config advice.
I have a 7250 flashed, licensed, racked up with UPS + cable modem, POE wifi AP + home office all wired up working fine.
I have a 6610 flashed, licensed, racked up with UPS + NAS, Disk shelf, Hypervisor machines, misc servers, Starlink and POE wifi AP in the shop.
Physically like this: Home office, 6610 1/3/1 mm-LC OM4 fiber--------------------------------------> Shop, 7250 1/2/1 mm-LC OM4 fiber.
I only have the single mm-LC 100 meter fiber cable linking the shop to the office.
7250/48p is 10.10.100.2
6610/48p is 10.10.100.3
Can access both switches via ssh on the network.
Both switches have vlans configured this way:
vlan 1 name DEFAULT-VLAN by port
router-interface ve 1
vlan 10 name management by port
vlan 20 name servers by port
vlan 30 name IOT by port
vlan 40 name sec_cam by port
vlan 50 name cablenet by port
vlan 51 name starlink by port
vlan 777 name native by port
I would like to use vlans to tunnel the cable modem to the rack in the shop, host either a physical or VM instance of pfsense and divide up the network with vlans to keep things more secure. Setting up pfsense with dual wan isn't a problem, but tunnelling the cable modem to the shop is a hurdle I need to clear.
Shouldn't be a problem. Plug the cable modem into a port, set that port as untagged VLAN 50, make sure your trunk port to the other switch properly tagged, then if pfSense is physical, whatever port it's using for WAN, set to untagged VLAN 50. If you're trying to trunk everything into pfSense, can't help you there, I've never bothered with VLANs directly on pfSense. Mine's a VM, so one VNIC per interface instead of VLAN tagging and sub-interfaces.
I take an ethernet handoff from my ISPs ONT straight into a switch with a L2 untagged port, that gets handed to the VM cluster over a trunk port and pealed out as VNIC that pfSense sees as physical interface.
Using your VLANs and assuming you want to trunk all of them between both switches, here'res the basic commands for the 7250, where 1/2/1 is the 10G port you're using for uplink, and for the example, your cable modem is on 1/1/1:
Code:
vlan 10
tag e 1/2/1
vlan 20
tag e 1/2/1
vlan30
tag e 1/2/1
vlan 40
tag e 1/2/1
vlan 50
tag e 1/2/1
untag e 1/1/1
You mention hypervisors, so if your pfSense is virtualized, then the ports to your VM hosts would also be tagged traffic, just like the inter-switch trunk ports. Then you'll setup VNICs using the relevant VLAN IDs.
For example, on my Hyper-V host, this is my opnSense VM:

VLAN 2 is the VLAN my fiber ONT is connected to. Each of those VNICs is tagged to a different VLAN. I personally prefer handling it at his level rather than inside opnSense.