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 - duckdns.org

    Did you try the VPN example? You might need to change the tun11 lines if you're using a different client instance.
  2. Dabombber

    Fresh Merlin install and blocked inbound ports

    Might be worth checking your remote access settings at the bottom of Administration > System. firewall.c
  3. Dabombber

    User script for ntpd_synced

    You could just hook one of the existing scripts which are run at the end of ntpd_synced_main.
  4. Dabombber

    Restarting avahi-daemon

    If you need to find a service command in the future, you can see them in rc/services.c. They're in the handle_notifications function, or you can just search for "strcmp(script". It can still be a bit cryptic figuring out what they do, but it's better than nothing.
  5. Dabombber

    Dual Stack (IPv6): DNS for IPv6 is not my AC88U

    I could be wrong, but it looks like 2a02:810a:xxxx:xxxx::1 is your routers ip address, the best place to check would be the IPv6 Network Information page. If you do a nslookup on ip6-local.net and it gives fe00:: then you're using your router for DNS. If it's a non-existent domain then you're...
  6. Dabombber

    Dual Stack (IPv6): DNS for IPv6 is not my AC88U

    Your post is a bit confusing, are you perhaps confusing your providers DNS and your routers assigned IPv6 address? There's not really any issue for clients having their IPv6 DNS set to the routers public IPv6 address, requests are still passed through dnsmasq (or whatever you've set to handle...
  7. Dabombber

    Struggling to write a non-killable process

    I wasn't sure if it was allowed to be run multiple times since you loop through and possibility kill multiple processes when stopping. The best way to limit it would be to store the pid of the tail process, which is kinda annoying since there's no job support included.
  8. Dabombber

    Diversion Diversion - the Router Ad-Blocker

    Not sure which lists you're using but hosts-file.net currently blocks it for malware.
  9. Dabombber

    Struggling to write a non-killable process

    There's no need to follow the format of the other init scripts so closely. It could be as simple as
  10. Dabombber

    Diversion Diversion - the Router Ad-Blocker

    It should be pretty safe to assume people are using entware-setup.sh code, any broken scripts would be caught with sh -n. The bigger problem would be the services-start sed statement not having a matching end block which would mean the file gets truncated. This could be fixed with sed -ni...
  11. Dabombber

    Using next DNS: possible DNS attack rebind detected issue

    Looks like nextdns is filtering ad sites for you. Your options are to disable it on their website, turn off rebind protection, or block the hosts on your router as well. They put their blocked hosts lists on their github if you want to take the third option, which you should be able to dump...
  12. Dabombber

    [Announcement] Wiki migrated from legacy to NG Github repo

    Cool, makes a lot more sense having it there. It's not currently editable though.
  13. Dabombber

    Diversion Diversion - the Router Ad-Blocker

    It should be possible to compromise and attempt removing the entware-setup.sh parts shouldn't it?
  14. Dabombber

    [Release] Asuswrt-Merlin 384.15 (and 384.13_4) are now available

    Would there be any issues using symlinks instead of copying the files to /www/user? That way "md5sum" could be replaced with "readlink -f --", and it'd be a bit more robust if people start using template/place-holder pages.
  15. Dabombber

    [384.16_Alpha Builds] Testing all variants

    Any thoughts on including the nanorc syntax files, or at least the sh one? I realise it's pretty easy to add them ourselves, but it improves nano quite a lot for such a small addition it might be worth including by default.
  16. Dabombber

    Skynet Skynet - Router Firewall & Security Enhancements

    What about trying it gracefully first? It's still not ideal, maybe it'd be worth recommending a reboot if it's forced to use -a. [ -f "$1/myswap.swp" ] && { swapoff "$1/myswap.swp" || swapoff -a; }
  17. Dabombber

    Skynet Skynet - Router Firewall & Security Enhancements

    The problem I see is unmounting a second USB drive while the first has the swap file. It'd be better to go through the swap files and remove any from the unmounted drive, something like tail -n+2 /proc/swaps | while read -r FILENAME _; do case "$FILENAME" in "$1/"*) swapoff...
  18. Dabombber

    [Release] Asuswrt-Merlin 384.15 (and 384.13_4) are now available

    I don't think it's placebo. Before I'd quite often get events skipped by the rc_service on a reboot, after upgrading I've yet to see one skipped, so the startup stuff must have seen some love. For the new addons stuff, rather than namespacing settings, wouldn't it make more sense to have per...
  19. Dabombber

    amtm amtm - the Asuswrt-Merlin Terminal Menu

    Should amtm be removing the /opt -> /tmp/opt link (entware_setup.mod line 114/130)? It doesn't seem like it's recreated anywhere.
  20. Dabombber

    Can I block fanhattan.com?

    From the logs it looks like there's 2 subdomains of fanhattan.com, serv-wwwm-dev and serv-www-dev. Using nxdomain instead of 0.0.0.0/::1 seems like a more intuitive solution but can cause longer load times and/or break some things entirely.
Top