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

    [RT-N66U] DNS-O-Matic and real / global ip script

    Dnsomatic detects your IP automatically if you don't set it, so that script should work as it is.
  2. Dabombber

    Escaping bug in helper.sh

    The _quote function used in helper.sh escapes the pipe character '|' and ignores the ampersand '&'. _quote() { echo $1 | sed 's/[]\/$*.^|[]/\\&/g' } Examples where this is broken, and an echo bug for good measure: $ sh test.sh pc_replace "|b" "123" "$TMPFILE" 123a 123 123c 123 pc_replace...
  3. Dabombber

    Access router web interface from local network using DDNS

    It's probably the expected behaviour. If WAN access is disabled then I don't think httpd would be listening on the WAN IP, stuff like ping doesn't care and just responds to whoever.
  4. Dabombber

    Experimental BcraFFY (OpenSSL 1.1.x) builds

    That's a bit rotten.
  5. Dabombber

    Extend "service" to Entware services

    If you want one line, why not just have in /jffs/scripts/service-event #!/bin/sh # service ACTION_TARGET for Entware [ -x /opt/bin/find ] && /opt/bin/find /opt/etc/init.d/ -perm '-u+x' -name "S[0-9][0-9]$2" -execdir {} "$1" \; & EDIT: Added [ -x /opt/bin/find ] check
  6. Dabombber

    [Feature Request] Save/restore config of hostes in DHCP

    Lots of solutions here. Adding the ability to the webgui would involve using the shell anyway so you might as well just do it manually.
  7. Dabombber

    [Release] Asuswrt-Merlin 384.9 is now available

    Best to test it if you're not sure which will work. So "$@" would be best.
  8. Dabombber

    How inadyn works

    I've been looking at inadyn and it seems a little inconsistent. From what I can tell, ddns-start is always called, and if you set your DDNS server setting to anything but custom or www.oray.com inadyn is used. I think it would be better to have them both called all the time, or at least check if...
  9. Dabombber

    Diversion Diversion - the Router Ad-Blocker

    Thanks, I'm fine with the lite version for now though :). My concern was the 'e' option didn't exit the install.
  10. Dabombber

    Diversion Diversion - the Router Ad-Blocker

    It's just there to redirect the webui, manually installed so I guess it's a somewhat uncommon use case. /opt/etc/nginx/nginx.conf user nobody; pid /opt/var/run/nginx.pid; events { worker_connections 64; # multi_accept on; } http { include mime.types; default_type...
  11. Dabombber

    Diversion Diversion - the Router Ad-Blocker

    It's a trap. ✖ Your router's firmware (384.8) is too old to run Diversion Standard Edition, only the Lite Edition can be installed. Upgrade your routers firmware first before attempting to install Standard Edition. Continue? [1=Yes e=Exit] e i Running function...
  12. Dabombber

    DDNS custom script for use with asus.com

    Just checked and https://github.com/BigNerd95/ASUSddns worked for me. The only difference from the instructions is that my mac was stored in et2macaddr instead of et0macaddr so it may be better to use wan0_hwaddr instead.
  13. Dabombber

    Cleaning up the wiki

    It seems like AsciiDoc is the only format to support automatic TOCs on the github wiki, I've converted the markup using pandoc and fixed it up a little. The examples really need to be more consistent though, they're getting the IP from all over the place, wget, nvram, one is even writing it to a...
  14. Dabombber

    Media server on Asus 87U is not working

    There's a few threads which mention disabling IGMP Snooping helped with the media server not showing up. Try connecting via shell and using the command echo 0 > /sys/class/net/br0/bridge/multicast_snooping if that works you can add it to your init-start script.
  15. Dabombber

    Asus-Merlin : DDNS : public ip instead of interface ip

    It should be possible, but you might need to play around a bit. Here might be a good place to start.
  16. Dabombber

    Asus-Merlin : DDNS : public ip instead of interface ip

    This is already possible using the custom DDNS options, in most cases the line IP=${1} just needs to be replaced with IP=$(wget -O - -q http://myip.dnsomatic.com/) or whichever IP check you prefer.
  17. Dabombber

    [Beta] Asuswrt-Merlin 380.62 Beta is available

    Yet one of the previous changes was to accommodate names with them?
  18. Dabombber

    [Beta] Asuswrt-Merlin 380.62 Beta is available

    RT-AC88U 380.62_beta1-g7d0d688 Network Tools > Wake on LAN breaks with client names containing an apostrophe. Specifically on line 24 of Main_WOL_Content.asp var wollist_array = '...';
  19. Dabombber

    [BETA] Asuswrt-Merlin 380.59 Beta 1 is now available

    Device names are not properly escaped, so you need to make sure there's no ' characters or the link to open the edit box won't work.
Top