mirror of
https://github.com/iamromulan/quectel-rgmii-toolkit.git
synced 2026-04-25 06:35:52 +03:00
[GH-ISSUE #137] [TRACKED] IPv4 Access from Modem with Passthrough? #51
Labels
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/quectel-rgmii-toolkit#51
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @jhenkens on GitHub (Mar 23, 2025).
Original GitHub issue: https://github.com/iamromulan/quectel-rgmii-toolkit/issues/137
Hi,
When I enable IPPT via SimpleAdmin on the modem, I lose the ability to connect to IPv4 services from the modem itself.
It appears to work correctly at my router/laptop level, going through the modem, just not connections originating on the modem itself (thus, I can't speedtest, or download the latest version of the toolkit, without disabling IPPT).
@iamromulan commented on GitHub (Mar 23, 2025):
Which module is it? I'll try to see if I see the same thing.
@ripclap commented on GitHub (Apr 10, 2025):
Modem: RM520N-GL
Firmware Version: RM520NGLAAR01A08M4G_01.206.01.206
Summary:
The modem's rmnet_data1 interface (IP 169.254.5.1) wasn't accessing the Internet because an iptables rule was dropping all traffic from the 169.254.0.0/16 range.
This rule is created automatically when running:
AT+QMAP="mpdn_rule",0,1,0,1,1,"FF:FF:FF:FF:FF:FF"This issue was replicated on firmware version RM520NGLAAR01A08M4G_01.206.01.206 and does not occur on other releases.
Workaround:
Find the rule:
Run this command to list the OUTPUT chain with line numbers:
You should see something like:
Delete the rule:
Remove the rule by its number (for example, if it's rule number 1):
After that, the modem's internal connection should work, though the DROP rule will reinitialize on reboot.
@jhenkens commented on GitHub (Apr 10, 2025):
Sorry, somehow I missed the initial reply in my inbox. Yes, RM520N.
@ripclap commented on GitHub (Apr 12, 2025):
@jhenkens
Send the output of:
AT+QGMR
@jhenkens commented on GitHub (Apr 14, 2025):
@ripclap commented on GitHub (Apr 15, 2025):
I shared a workaround above, but if you don't specifically need that firmware version, I recommend downgrading — the issue doesn’t occur in earlier versions.