Recent content by Dabombber

  • 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 update not working after update to 386.9

    Posted this in the other thread. IPv6 is working fine for me, just the DDNS which is having issues.
  2. Dabombber

    Release Asuswrt-Merlin 388.1 is now available for all supported Wifi 6 models

    I'm getting the same thing. Is the logic for this right? #ifdef RTCONFIG_IPV6 if (nvram_get_int("ddns_ipv6_update") && ipv6_enabled() && (_get_ipv6_addr(wan_ifname, ip6_addr, sizeof(ip6_addr)) != 0)) { logmessage("ddns", "%s has not yet obtained an WAN IPv6...
  3. Dabombber

    Blank screen when attempting to specify Media Server (Minidlna) Directory

    My minidlna.postconf looks similar to this: #!/bin/sh sed -i -e '/presentation_url=/c\' -e 'presentation_url=https://media.example.com' "$1" printf "%s\n" 'log_level=fatal' >> "$1" sed -i '/media_dir=/d' "$1" printf "%s\n" 'media_dir=A,/mnt/usbhdd/media/music' >> "$1" printf "%s\n"...
  4. Dabombber

    Router Access DDNS when WAN is down

    Either should work, but as I mentioned interface-name will also resolve the IPv6 address. Dnsmasq is what provides the client's DNS responses, so it seems to me like the appropriate place to set the configuration. Just personal preference really.
  5. Dabombber

    Router Access DDNS when WAN is down

    I believe he means accessing it locally, but using the ddns hostname. It should be possible by adding a dnsmasq.conf.add line to point it to the routers LAN address instead of resolving to the WAN address. I think using the interface-name option should let it work for both IPv4 and IPv6, but it...
  6. Dabombber

    No encrypt certificate not working with DDNS service

    Guess I should have seen that coming, you could instead use logger -t acme -- "$*" but I guess you've got what you need.
  7. Dabombber

    RT-AC68U can't ping IPv6 but clients can?

    It could be a dns issue, are you unable to ping google.com, or [2607:f8b0:4000:819::2004]?
  8. Dabombber

    No encrypt certificate not working with DDNS service

    I don't know if it'd be suitable to be added to the dnsapi repo as it uses some asus only features, the nvram secret_code and hardware MAC address, and it also forces a ddns update for the asuscomm address. The easiest way to find the arguments would be to just mount over the acme script and...
  9. Dabombber

    No encrypt certificate not working with DDNS service

    I'm not sure if it still works, but I made a dnsapi script for asuscomm.com which doesn't use rely on prebuilt binaries. From my acme installer:
  10. Dabombber

    Solved webgui SSL certificate install script

    Actually, after looking through the code you might want to use --reloadcmd instead. It can be used with either --install-cert or --issue and runs after success, while --renew-hook can only be used with --issue and only runs on renewal (so not the first certificate request).
  11. Dabombber

    Solved webgui SSL certificate install script

    If you've already set your router to use a custom certificate, you don't need to set any nvram values. There's also some variables set by acme which can make it a bit easier. #!/bin/sh # Preset variables # CERT_PATH # CA_CERT_PATH # CERT_FULLCHAIN_PATH # CERT_KEY_PATH # Le_Domain # Check the...
  12. Dabombber

    Entware How can I use grey in SSH prompt (via tput)?

    ncurses is included in asuswrt, but many of the utilities which usually come with it are not. While it's possible to install it from entware, it's probably best to make something like your command prompt as fail-safe as possible (best not to even add it to your profile.add until you've tested...
  13. Dabombber

    Beta Asuswrt-Merlin 386.1 Beta (stage 2) is now available

    It might be helpful to include this in the upgrade notes section of the first post. - NOTE: Some users upgrading might have to go through some database maintenance on first boot, which means the router might be slower or have a non-responsive webui for a while...
  14. Dabombber

    Router up before services and entware packages are available?

    Seems like a problem with your entware installation. Usually there'd be an entry in /jffs/scripts/post-mount which would call /opt/etc/init.d/rc.unslung start "$0" when the drive is mounted, and that'd load all the enabled /opt/etc/init.d/S## scripts.
  15. Dabombber

    Entware How to change path?

    Entware puts itself first on the PATH list in /opt/etc/profile, which is included from /etc/profile ([ -f /opt/etc/profile ] && . /opt/etc/profile). I suspect there's a problem with Turgut's installation.
Top