Connecting multiple hotspots with tether, repeater, and WAN

Hello everyone!

I live in an RV full-time, and have several sources of internet, all cellular connections of one type or another.

For hardware, I have the following:

  • Netgear M1 router providing LTE via ethernet
  • A OnePlus Nord 10 for tethered use
  • Another hotspot for LTE that is wifi-only
  • MT1300 (not currently in use - yet)
  • TP-Link AX1800 router

What I would like to do is have all three cellular sources connected to the MT1300. The tethered phone and M1 hotspot connections seem relatively straight-forward. The ‘gotcha’ I see so far is in adding the connection for the wifi-only hotspot. I don’t need to use the AX1800, but I have it if required.

Is it possible to configure the phone (via tether), the M1 (via WAN port), and the wifi-only hotspot (via repeater) together? Or, would I have to add another device to “convert” the wifi-only hotspot to an ethernet connection first (such as GL-iNet Mango)? Or, is this just not possible?

Any advice or recommendations welcomed!

Thanks in advance!

There is no problem at least connecting M1 to WAN port over Ethernet cable and LTE hotspot to WWAN over wifi repeater at the same time. It “should” also be feasible to connect Nord 10 over USB tethering, although I have not tried it myself.

The priority order is configured in the /etc/config/mwan3 file, with WAN, then WWAN, then Tethering:

There may be time delays between switching over from one connection to another connection.

I do not work for and I do not have formal association with GL.iNe

1 Like

You can connect 3 connections at the same time.

It use one Internet and then failover to the next one. The priority order is: cable > wireless wan > tethering.

1 Like

Thanks all for the answers!

I was able to get the connections set up and working, but for some reason, the WWAN is always used first. If I disconnect that, the WAN connection works fine…any thoughts on why this might be happening?

Appreciate your collective assistance so far!

You can log in via SSH and check the /etc/config/mwan3 file. The “metric” value determines the priority from 1-WAN (highest), 2-WWAN, 3-tethering, 4-modem (lowest), like this:

config member 'wan_only'
	option interface 'wan'
	option metric '1'
	option weight '3'

config member 'wwan_only'
	option interface 'wwan'
	option metric '2'
	option weight '3'

config member 'tethering_only'
	option interface 'tethering'
	option metric '3'
	option weight '3'

config member 'modem_only'
	option interface 'modem'
	option metric '4'
	option weight '3'

Also, check that the M1 WAN provides a stable Internet connection, so that the router does not switch over to WWAN hotspot.

I do not work for and I do not have formal association with GL.iNet

The router use ping to detect Internet. Make sure your wan connection can allow ping

Thanks everyone for your suggestions and assistance!

I changed the WWAN configuration to a metric of 2. It appears as though more of my data is flowing through the M1 WAN, so I’m going to monitor this and see how things go over the next couple of days. Thanks again!

One thing, there is a metric in /etc/config/network. You should use that metric value. It seems take priority over the one in /etc/config/mwan3

2 Likes

Thank you! Everything seems to be working as intended for now. Thank you for your assistance!

1 Like