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

Search results

  1. R

    Custom IPv6 DNS in Router Advertisements

    Maybe. Check this thread for details: https://www.snbforums.com/threads/collection-of-scripts-for-stock-firmware.95687/
  2. R

    Custom IPv6 DNS in Router Advertisements

    I'm not running IPv6 now, but when I was, I was able to change the RA DNS using the "listen-address=" parameter in the corresponding dnsmasq config file. Not sure if that method would work here. Edit: note, I created and used an ULA for this. Not sure a local link address would work.
  3. R

    dnsmasq.conf.add not working on Guest Network Pro clients

    This is excellent. Great resource for SDN field definitions. Also will be helpful to debug any changes in future firmware versions. Thank you!
  4. R

    Custom IPv6 DNS in Router Advertisements

    Did you follow the ipv6 instructions here? https://www.asus.com/support/faq/1046062/
  5. R

    Collection of scripts for stock firmware

    My apologies, you were right all along. There is only one stubby process. This updated command now just shows on pid after all: /bin/ps w | grep -v "grep" | grep -F "stubby" | grep -F "/etc/stubby/ stubby-0.yml" | awk '{print $1}'
  6. R

    Collection of scripts for stock firmware

    Just checking that your script handles this: there are two pids with that configuration running on my router. I'm not needing this, but I'd thought I'd let you know.
  7. R

    Beta Asuswrt-Merlin 3006.102.6 Beta is now available

    A couple of observations after update. One client is refusing to bind my AiMesh node as it was before the update (router states it "optimized" the connection and keeps it connected to the main router). I tried unbind/rebind and reboot without success. Also, had a repeater client show offline...
  8. R

    dnsmasq.conf.add not working on Guest Network Pro clients

    Nice job on the scripts! Btw, not sure there is any advantage one way or the other, but here is what I use to list the bridges: brctl show | awk 'NF>1 && NR>1 {print $1}' Rung
  9. R

    dnsmasq.conf.add not working on Guest Network Pro clients

    Btw, the Wiki for custom Merlin configs (Link) states "dnsmasq-sdn.postconf (the SDN index number is passed as second argument, 1 is the first instance)". Does the info in this thread mean this statement should be updated?
  10. R

    dnsmasq.conf.add not working on Guest Network Pro clients

    I have had use cases that needed the bridge/subnet information during dnsmasq configuration (e.g. creating and assigning an ULA to the virtual bridge and adding that to the configuration file). During configuration, one only gets the SDN index and would need to use that to get everything else...
  11. R

    dnsmasq.conf.add not working on Guest Network Pro clients

    Based on what I learned here, I am hoping someone could please review this script and let me know if they think this is a proper way to get the bridge and subnet info for a dsnmasq-sdn.postconf script: #!/bin/sh CONFIG=$1 SDN=$2 source /usr/sbin/helper.sh #Determine bridge name and subnet...
  12. R

    dnsmasq.conf.add not working on Guest Network Pro clients

    Yes, it appears to get all the info, one must look at multiple variables. For @David Cavalli, we have the following info from the first couple of fields of each: sdn_rl: 0:DEFAULT,1,0 4:Guest,0,3 5:IoT,1,0 6:Guest,1,4 subnet_rl: 3:br55,192.168.54.1,255.255.255.0,1,192.168.54.2...
  13. R

    dnsmasq.conf.add not working on Guest Network Pro clients

    That's where it lives. Thanks!
  14. R

    dnsmasq.conf.add not working on Guest Network Pro clients

    This is hilarious. So where, oh, where would one find that mysterious <6> value in nvram? Maybe let's try: nvram show | grep "<6>"
  15. R

    dnsmasq.conf.add not working on Guest Network Pro clients

    Sorry for this. Can you show this: nvram get vlan_rl
  16. R

    dnsmasq.conf.add not working on Guest Network Pro clients

    Apparently subnet_rl is not enough! Why has Asus made this so complicated? Does anyone have a better way to script this info from nvram variables?
  17. R

    dnsmasq.conf.add not working on Guest Network Pro clients

    Interesting! Can you post the result of this command? nvram get subnet_rl Thanks!
  18. R

    dnsmasq.conf.add not working on Guest Network Pro clients

    I use the nvram variable "subnet_rl" to determine the GNP index among other info
  19. R

    TAILMON TAILMON v1.3.0 -Aug 24, 2025- WireGuard-based Tailscale Installer, Configurator and Monitor (Available in AMTM!)

    Viktor, Wanted to say thank you again for the autoupdate feature of the Tailscale binary. Five updates in less than a week? What's going on over there at Tailscale headquarters? Rung
  20. R

    BACKUPMON BACKUPMON v1.9.1 -Oct 28, 2025- Backup/Restore your Router: JFFS + NVRAM + External USB Drive! CIFS/SMB/NFS! (Available in AMTM!)

    FYI - just to be safe, I "rolled my own" version of this a while back in Excel. Not sure if (or whether) I can share macro-enabled Excel file, but here are the pieces. The main sheet is shown here (formulas shown): And the macro that runs when the button is pushed is here: Sub...
Back
Top