Living in the countryside has its perks, but high-speed internet isn’t one of them. I was stuck with a snail-paced 5Mbps ADSL connection, while my city friends boasted about their 100Mbps fiber optic plans. Tired of the buffering and laggy video calls, I decided to take matters into my own hands.
After scouring the internet, I stumbled upon a solution: a WiFi router with a PCI-Express slot and a 3G/4G USB modem. This setup would convert cellular signals into a private WiFi network and wired LAN. The best part? There are budget-friendly options tailored for this.
This quirky router, reminiscent of building blocks, boasts a 580MHz MediaTek MT7628AN processor, 64MB DDR2 RAM, and 16MB flash storage. With 4 LAN ports, dual-band WiFi, and a USB 2.0 port, it’s a steal. The cherry on top? The PCI-E slot for the 3G/4G modem.
Technical setup
BM806U-C1+:
FDD-LTE:B1/B3/B5/B8 TDD-LTE:B34/B38/B39/B40/B41(120M)
HSPA/UMTS:B1/B5/B8 EVDO/CDMA:BCO
GSM/GPRS/EDGE:B3/B8
BMB06U-E1+:
FDD-LTE B1/B2/B3/B5/B7/B8/B20 TDD-LTE B38/B40/B41(120M)
HSPA/UMTS:B1/B2/B5/B8
GSM/GPRS/EDGE:B2/B3/B5/88
BM806U-A1+
FDD-LTE:B2/B3/B4/B5/B12/B13/B17/825/826/866
TDD-LTE:B41(200M)
HSPA/UMTS:B2/B4/B5
GSM/GPRS/EDGE:B2/85
BM806U-T1+:
FDD-LTE:B1/B2/B3/B4/B5/B7/B8/B20/828/B66
TDD-LTE:B34/B38/B39/B40/B41(200M)
HSPA/UMTS:B1/B2/B4/B5/B8 EVDO/CDMA:BCO
GSM/GPRS/EDGE:B2/B3/B5/B8
I made a mistake, because this Aliexpress seller was not honest, and provided the description for the LTE modules he didn’t sell.
I learned this by running
minicom -D /dev/ttyUSB1
AT+BMBANDPREF=?
+BMBANDPREF: support band: 0x2000000400380, 0x1E000000085, 0x21
0x1E000000085
means ['EUTRAN_BAND1', 'EUTRAN_BAND3', 'EUTRAN_BAND8', 'EUTRAN_BAND38', 'EUTRAN_BAND39', 'EUTRAN_BAND40', 'EUTRAN_BAND41']
, but I need BAND20. So, only 3G is available, no 4G.
Inserting the modem was a breeze. Just pop it into the PCI-E slot and secure it. The router came with a custom OpenWrt 17 build, but I wanted the latest and greatest.
Flashing it with OpenWRT was slightly tricky, but this guide was a lifesaver.
cd /tmp
wget https://downloads.openwrt.org/releases/22.03.5/targets/ramips/mt76x8/openwrt-22.03.5-ramips-mt76x8-unielec_u7628-01-16m-squashfs-sysupgrade.bin -O sysupgrade.bin
sysupgrade -v /tmp/sysupgrade.bin
You also could upgrade router over Web interface LUCI. The latest OpenWRT firmware is a bit barebones, so I had to manually install the LUCI web interface and packages for the 3G modem. I also threw in a wireguard client for good measure.
opkg update
opkg install luci luci-proto-wireguard luci-app-wireguard wireguard-tools kmod-usb-net-cdc-ether usb-modeswitch luci-proto-3g comgt kmod-usb-serial kmod-usb-serial-option kmod-usb-serial-wwan chat
Once set up, I configured the APN settings for my carrier and set a WiFi password for my new “home” network
After reloading network everything, I was excited to run some speed tests - I was now getting 20Mbps download and 5Mbps upload speeds for the same monthly cost as my old 5Mbps ADSL plan!
This new setup has been working flawlessly for months now. I’m able to have multiple HD video streams, download files much quicker, and make crystal clear video calls. The modem seamlessly fails over to 3G when 4G is not available, so I haven’t had any interruptions. And because WiFi is integrated, I now have better wireless coverage across my entire house.
Months in, and this setup hasn’t missed a beat. HD streaming, faster downloads, and crystal-clear video calls are now the norm. The modem’s 3G fallback ensures uninterrupted service, and the integrated WiFi blankets my entire home in strong signal.
For the tech-savvy, OpenWRT’s flexibility is a boon. I tweaked the TTL of my packets, ensuring my usage remains under the radar.
echo "nft add rule inet fw4 mangle_forward ip ttl set 65" >> /etc/firewall.user
echo "net.ipv4.ip_default_ttl=65" > /etc/sysctl.d/99-ttl.conf
echo -e "config include\n\toption path '/etc/firewall.user'\n\toption fw4_compatible '1'" >> /etc/config/firewall
/etc/init.d/network restart
If you’re grappling with slow internet, consider this router-modem duo. It’s a cost-effective way to enjoy fiber-like speeds. Got questions? Drop a comment, and I’ll be happy to assist!