Hi!
I’ve following situation
LtAP, with two MPCIE modems in it, using two different operators.
My goal is to make one LTE modem doing passthrough to a host on a spearate VLAN, and other modem to keep working as WAN connection to all other hosts in the network.
With my current configuration, as I enable LTE passthrough on one of the lte interfaces, the passthrough works, though all other hosts on the native vlan are not getting any internet access.
So the question is simple, first is that possible to work the way I described? If yes, what corrections I should make in my configuration for it to work?
Kindly appreciate your help!
Configuration:
RouterOS 6.48.1
RouterBOARD LtAP-2HnD
/interface vlan
add interface=ether1 name=vlan1 vlan-id=20
/interface lte apn
add apn=pro default-route-distance=1 name=BITE
add apn=static.tele2.lv default-route-distance=1 name=Tele2 passthrough-interface=vlan1 passthrough-mac=FC:XX:XX:XX:XX:XX
/interface lte
set [ find ] apn-profiles=BITE name=BITE network-mode=lte
set [ find ] apn-profiles=Tele2 name=TELE2 network-mode=lte
/ip pool
add name=dhcp ranges=10.10.90.100-10.10.90.200
add name=dhcp_pool1 ranges=192.168.0.100-192.168.0.200
/ip dhcp-server
add address-pool=dhcp disabled=no interface=bridge-lan lease-time=2w name=dhcp1
/ip neighbor discovery-settings
set discover-interface-list=none
/interface detect-internet
set detect-interface-list=all
/ip address
add address=10.10.90.1/24 interface=ether1 network=10.10.90.0
add address=192.168.0.1/24 interface=vlan1 network=192.168.0.0
/ip dhcp-server config
set store-leases-disk=24m
/ip dhcp-server network
add address=10.10.90.0/24 dns-server=1.1.1.1,1.0.0.1 gateway=10.10.90.1 netmask=24
add address=192.168.0.0/24 dns-server=1.1.1.1,1.0.0.1 gateway=192.168.0.1
/ip firewall nat
add action=masquerade chain=srcnat out-interface=BITE
add action=masquerade chain=srcnat out-interface=TELE2
/ip route
add check-gateway=ping distance=1 gateway=BITE routing-mark=to_BITE
add check-gateway=ping distance=1 gateway=TELE2 routing-mark=to_TELE2
add check-gateway=ping distance=1 gateway=TELE2
/system routerboard usb
set type=mini-PCIe
Dont mind the routing marks, they are used, when no passthrough is intact, for failover and load balancing purpose.