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

    Diversion Diversion - the Router Ad-Blocker

    If you've already got the main list, you can just add the extensions you want. https://raw.githubusercontent.com/StevenBlack/hosts/master/extensions/fakenews/hosts https://raw.githubusercontent.com/StevenBlack/hosts/master/extensions/porn/hosts...
  2. Dabombber

    [Script] Add a warning in WebUI when Remote Access is enabled

    Just realised that if the js file is already mounted then the timestamp of the modified file will be used rather than the original, resulting in the file being pointlessly recreated. Switched to using the css file timestamp instead (should be the same or ~1s off). Possibly a pointless change...
  3. Dabombber

    How inadyn works

    I'm not really too sure why that'd happen. Check the logs to see if your router is detecting a wan event and triggering the ddns update. It could also be that you have the old IP cached on your phone, or it's slow to update, maybe check http://iplookup.asus.com/nslookup.php after a change.
  4. Dabombber

    little help/suggestions needed

    Mmm, the format is completely different :confused: This should work with either the builtin nslookup or the entware version. GROUP_IP="$(nslookup "vpn61.prd.kista.ovpn.com" | awk 'NR>2&&/^Address/{if(NF==2){print $2}else{print $3};exit}')";echo "$GROUP_IP" EDIT: Awk script could be written a...
  5. Dabombber

    little help/suggestions needed

    Ah sorry, I didn't realise I was using entwares nslookup. Ignore the -type=A option.
  6. Dabombber

    little help/suggestions needed

    It might be better not to rely on the IPv4 format for nslookup output (for example 'nslookup google.com ::' or 'nslookup microsoft.com ns1.msft.net'), likewise there might only be an IPv6 address listed. GROUP_IP="$(nslookup "$CN" | awk 'NR>2&&$1=="Address:"{print $2;exit}')";echo "$GROUP_IP" If...
  7. Dabombber

    [Release] Asuswrt-Merlin 384.12 is now available

    I don't think so. From RFC8106, it seems that RA is just for basic networking information: If it was, or eventually is supported, dnsmasq would most likely copy over the DHCP options like it does already.
  8. Dabombber

    [Release] Asuswrt-Merlin 384.12 is now available

    IPv6 redirections are not supported, NTP works fine using IPv6.
  9. Dabombber

    [Release] Asuswrt-Merlin 384.12 is now available

    Should NTP be advertised on IPv6 over DHCP? I added it via dnsmasq.postconf echo 'dhcp-option=option6:ntp-server,[::]' >> "$1" Just curious if it got forgotten or there is a reason not to have it.
  10. Dabombber

    Cloudflare Time

    No need for that, pool.ntp.org has prefixes for 4 different random servers. It also works for any of the regional subdomains, although 0.pool.ntp.org 1.pool.ntp.org 2.pool.ntp.org 3.pool.ntp.org 0.north-america.pool.ntp.org 1.north-america.pool.ntp.org 2.north-america.pool.ntp.org...
  11. Dabombber

    Diversion Diversion - the Router Ad-Blocker

    To narrow it down to whether it's a browser or router problem, try looking up a domain which should be blocked. Windows Key + R, cmd, nslookup ads.cc Should give something like: C:\Users\Whoever>nslookup ads.cc Server: router.asus.com Address: 192.168.1.1 Name: ads.cc Addresses: ...
  12. Dabombber

    Cloudflare Time

    This also confuses me, since the very first process in the protocol draft is connecting to the key exchange server using TLS. I guess they assume Roughtime is being used first, but then that completely eliminates time based key attacks and the need for NTS in the first place. The whole thing...
  13. Dabombber

    [Beta] Asuswrt-Merlin 384.12 Beta is now available

    I don't have anything locally that depends on ddns being set. Is it ok to run ddns updates in the background, or will it trigger multiple attempts if ddns-start finishes before /sbin/ddns_custom_updated is called?
  14. Dabombber

    [Beta] Asuswrt-Merlin 384.12 Beta is now available

    ddns-start is still getting called a few times, before they would be 30 sec apart, now they all happen at once. And I think openvpn got started by the cron check (#CheckVPNServer1#) before being "started".
  15. Dabombber

    Entware TZ Issue

    I think setting /etc/localtime would be more reliable than a TZ environment variable since it's hard to be sure which environment scripts will be run with. As long as entware is being started correctly you could set the time in an init.d file, beginning the name with S00 so it's run as early as...
  16. Dabombber

    [384.12_Alpha - builds] Testing all variants.

    You might need to turn rebind protection off if you want to use a Pi-hole upstream of dnsmasq. Enable DNS Rebind protection: "Enabling this will protect your LAN against DNS rebind attacks, however it will prevent upstream DNS servers from resolving queries to any non-routable IP (for example...
  17. Dabombber

    [384.12_Alpha - builds] Testing all variants.

    It shouldn't make any difference unless you need to use the names you've given them in scripts on the router itself. Wan: Use local caching DNS server as system resolver (default: No) No: The router will not be able to resolve client host names. This has no effect on clients themselves (they...
  18. Dabombber

    [384.12_Alpha - builds] Testing all variants.

    Was there anything in the system logs about it? Sometimes the rc service gets backed up and drops events. Usually preceded by a bunch of "waitting" messages (which comes from asus' binary blobs and annoys me every time I see it). May 18 22:31:23 rc_service: ip-up 23727:notify_rc start_firewall...
  19. Dabombber

    Diversion Diversion - the Router Ad-Blocker

    For something that invasive about serving ads you'll probably need to block them via a browser extension, hosts alone won't be enough.
  20. Dabombber

    [384.12_Alpha - builds] Testing all variants.

    Somewhat amusingly, I just had a problem related to both certificates and the local DNS resolver setting. My certificate just updated but a printer was still using the outdated one because the script to update it used the host name instead of IP, which now doesn't resolve. I doubt many people...
Top