What's new

[Issue RT-AC66U] Upnp Portmapper fail

  • SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

secure mode is enabled you can only map ports to your own ip

there's an nvram value
but no way of setting it in the web interface

i always set secure mode disalbed on every firmware i compile

you can find it in the source here

nvram_get_int("upnp_secure") ? "yes" : "no", // secure_mode (only forward to self)

https://github.com/RMerl/asuswrt-merlin/blob/master/release/src/router/rc/services.c

you could also i suppose set the nvram value via telnet

try
nvram set upnp_secure=no
nvram commit
reboot

it may hold or not..
 
Last edited:
secure mode is enabled you can only map ports to your own ip

there's an nvram value
but no way of setting it in the web interface

i always set secure mode disalbed on every firmware i compile

you can find it in the source here

nvram_get_int("upnp_secure") ? "yes" : "no", // secure_mode (only forward to self)

https://github.com/RMerl/asuswrt-merlin/blob/master/release/src/router/rc/services.c

you could also i suppose set the nvram value via telnet

try
nvram set upnp_secure=no
nvram commit
reboot

it may hold or not..
Thanks I got the same solution from Merlin and it appears to work fine although I didn't reboot. I just restarted the upnp service

service restart_upnp
That'll work for me even if I have to reset it after a reboot.
 

Latest threads

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Top