QUOTE(Anime4000 @ Sep 22 2020, 12:24 AM)
Plugging Maxis ZTE 4G Dongle into PC is same like plugging into Mikrotik, only "nslookup" works
[attachmentid=10593029]
The reason resolve work because Mikrotik is a client behind the dongle network, thus the packet involved was only outgoing packet.[attachmentid=10593029]
Forwarding on lte1 interface will be confusing cause duplicate route to internet. In your screenshot, active flag was on pppoe-out1 interface, so your connection will not go through lte1 interface.
Have you tried to disable the pppoe-out1 interface first then check whether internet works with lte?
If you want to test specific client to use on lte, you can try this
1. Disable add default route on dhcp client on lte1 interface
CODE
/ip dhcp-client set add-default-route=no [find interface=lte1]
2. Add route to with
2.a Dst addr = 0.0.0.0/0
2.b Gateway = lte1
2.c Routing mark = lte_route (any name to be used later)
CODE
/ip route add dst-address=0.0.0.0/0 gateway=lte1 routing-mark=lte_route
After fixing the route, next is prerouting decision what/when packet to go through this route in IP>Firewall>Mangle.
3. Then add new mangle rule with
3.a Chain = prerouting
3.b Action = mark routing
3.c New routing mark = lte_route (whatever routing mark set in 2.c)
3.d Src address = x.x.x.x (ip address)
CODE
/ip firewall mangle add chain=prerouting action=mark-routing new-routing-mark=lte in-interface=bridge src-address=192.168.88.x
Then the device with specified ip in mangle rule will be using the dongle internet, assuming you have added NAT masquerade rule for outgoing interface lte1, since you can open the dongle webUI.
Sep 22 2020, 04:00 PM
Quote
0.0454sec
0.75
7 queries
GZIP Disabled