Search results

  • 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!

  1. Dabombber

    DDNS: how to set up ASUS (primary), No-IP (backup), and push notification?

    The "services supported by In-a-dyn but not by the Asuswrt-Merlin" bit is just using ddns-start, and running inadyn manually from there. That should work. It'd be best to check if the IP has changed yourself since it's easy enough to do, it's also worthwhile to make sure it only runs once at a...
  2. Dabombber

    Security Concern for our routers or nah?

    Asuswrt-Merlin only checks for updates, it doesn't try to download them. I'd be more concerned about custom scripts running on the router, lots of people seem to use wget --no-check-certificate without understanding what it does.
  3. Dabombber

    How to use pi1.domain.com and pi2.domain.com instead of router.domain.com:8001 and router.domain.com:8002?

    Obviously a VPN would better etc, etc... Otherwise, the only way I can see it working like you want is if you have multiple IP addresses. Using IPv6 would make it easier, but you'd be relying on both locations being IPv6 enabled.
  4. Dabombber

    An easy question?

    I think it means the device has more than one IP address assigned to it, which could happen if you set a static IP address for it while the old lease is still valid. Once the old lease expires it'll go away, but if it constantly happens to a device you might want to set a static IP for it. For a...
  5. Dabombber

    Thanks for the forum software update

    Nice to have syntax highlighting in code boxes. Just wondering if it's possible to rename or alias Bash to Shell to avoid confusion. #!/bin/sh echo "<3"
  6. Dabombber

    [Release] Asuswrt-Merlin 384.18 and 384.13_10 is now available

    Not a fan of the new menu items, I know that's on Asus' end but it seems like they're just stacking more junk on top of an already bloated UI. Can't even throw a style="display:none" on it since it's generated in javascript. I think the best place to do it is /www/require/modules/menuTree.js...
  7. Dabombber

    Printer (LAN connected) not found via WIFI.

    Maybe you have wireless isolation enabled (Wireless > Professional > Set AP Isolated).
  8. Dabombber

    [Dev] Q&A for Merlin Addons API

    There's not really any validation going on with settings, maybe you're writing a setting with a multi-line value somewhere? The easiest way I see of doing this is treating empty and unset settings the same, and deleting them internally. For example [ -n "$2" ] && echo "$@" >> $_am_settings_path...
  9. Dabombber

    Script to toggle WAN

    Should be possible with the command "service restart_wan". Service commands are mostly undocumented but you can poke around the source here and find them by searching for strcmp/strncmp.
  10. Dabombber

    [RT-AC86U] Custom LetsEncrypt DDNS/TLS cert

    I think the web server uses /etc as the working location for certificates, but since it's volatile they're stored in /jffs/.cert (not sure how they're loaded, but there's a part of it here). If using /etc works for you that's fine, but storing them in /jffs would be easier (you'd only need to do...
  11. Dabombber

    [RT-AC86U] Custom LetsEncrypt DDNS/TLS cert

    First off I'd remove any certificate stuff from ddns-start, since that's for IP changes which is unrelated to certificates. I think the Free Certificate from Let's Encrypt option on the WebUI saves to /jffs/.le, but what you probably want is Import/Persistent Auto-generated which saves to...
  12. Dabombber

    enable IPV6 on merlin

    I'm not sure what the default settings are, but have you tried setting Connection type to Native on the IPv6 page? If it can figure out the settings itself, then you should be pretty much sorted.
  13. Dabombber

    RT-AC86U Api Calls

    Sounds like you want SSH?
  14. Dabombber

    How to configure static IPv6 on Asuswrt-Merlin?

    It's the "ra-names" which fixes android rather than slaac isn't it? Based off this, I think slaac is SLAAC+stateful DHCPv6, and ra-stateless is SLAAC+stateless DHCPv6. So android should work with either, and it gets its host name from the IPv4 address thanks to ra-names.
  15. Dabombber

    Addon page suppresses Dnsmasq restart

    Out of necessity mostly, not having the firewall or IPv6 working after a reboot was kinda... bad. It'd be nice if there was a better way then reading the log, but as mentioned the event stuff is all closed source now.
  16. Dabombber

    How to configure static IPv6 on Asuswrt-Merlin?

    Do you want to be able to connect specifically via the global IPv6 address, or just over a host name using IPv6? No need to compromise on this, you can use both the global and link address at the same time (and the ULA address if you want too). In dnsmasq.postconf I have this line sed -i...
  17. Dabombber

    Addon page suppresses Dnsmasq restart

    Other than forking to indicate you're done with the service-event part, you could add a workaround for skipped service events. Before version 384.15 I'd frequently get skipped events on boot, so I added this:
  18. Dabombber

    Using Cloudflare for DDNS

    Yup, with the DDNS server set to custom in the WebUI. Or via dns-o-matic as Jack Yaz mentioned. Just to be sure, you want both domains to point to your router? If so then yes, but only run the /sbin/ddns_custom_updated part once at the end. It's pretty much personal preference, some people...
  19. Dabombber

    RT-AX88U OpenVPN Custom Configuration GUI space issue

    A heredoc might be easier. cat <<- EOF >> "$CONFIG" push "route 10.10.2.0 255.255.255.0" push "route 10.10.3.0 255.255.255.0" push "route 10.10.4.0 255.255.255.0" push "route 10.10.5.0 255.255.255.0" route 10.10.2.0 255.255.255.0 route 10.10.3.0 255.255.255.0 route...
  20. Dabombber

    SOLVED: Configure/ customise Merlin shell?

    You just need to set the PATH/PS1 variables, which can be done without reconnecting. To test profile.add, you can source it ("source /jffs/configs/profile.add" or ". /jffs/configs/profile.add"), although that may not be ideal if you've added anything which should only run once. For example, the...
Top