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

    Can I block fanhattan.com?

    I found the same thing with timeline-sync.getpebble.com, since they shut down the services they just pointed the address to 0.0.0.0. Easiest way to get rid of the warning messages is to manually set the address using /jffs/configs/dnsmasq.conf.add. In your case you'd want to add the line...
  2. Dabombber

    Permanently moving traffic.db and syslog.log over to a USB Drive?

    The pastebin link on the previous page is meant for embedding, try using the original, or even easier, the raw.
  3. Dabombber

    IPv6 bug?

    Anything relevant in the system log? Occasionally I notice IPv6 not working and the cause is usually Xxx # ##:##:## rc_service: skip the event: start_dhcp6c. If that's the case for you as well, you can SSH into the router and use the command "service start_dhcp6c".
  4. Dabombber

    [Beta] Asuswrt-Merlin 384.14 Beta is now available

    That's a bit of an ugly solution, it'd be better to use a ddns-start script to update your domain.
  5. Dabombber

    Asus Lets Encrypt Certificate will not renew

    There's some more recent posts about this, best place to look would be the 384.14 beta thread where it should be fixed.
  6. Dabombber

    Router IPv6 hosts entries

    I played around for quite a while with IPv6 addresses through dnsmasq before settling on using the interface-name option. It can be used as a config entry rather than trying to work out the IPv6 address in a script (it'd be nice if [::] and [fe80::] were substituted), though might not work with...
  7. Dabombber

    How to access router WEB UI through nginx proxy

    Authentication seems to be token based, logging in through a second device (or even another web browser on the same device) will cause the first one to be logged out.
  8. Dabombber

    Lets Encrypt cert

    For most people, there's a bigger difference between free and $1 than there is between $1 and $15. Having a 4 year certificate will most likely cause bigger problems than a shorter term when it expires since it'll most likely be unexpected. Let's Encrypt's take on it here. As for waiting for...
  9. Dabombber

    How to access router WEB UI through nginx proxy

    Fails how, and what's the config you're currently trying? Is the DNS entry for the domain pointing to the nginx server? The only setting I've needed specifically needed for the WebUI through nginx is client_max_body_size so firmware upgrades could be done.
  10. Dabombber

    Lets Encrypt not updating, or?

    The WebUI shows the certificates for httpd (/jffs/.cert/cert.pem and /jffs/.cert/key.pem). Looks like you're running nginx, so you'd either want to point to those in /opt/etc/nginx.conf (ssl_certificate /jffs/.cert/cert.pem; and ssl_certificate_key /jffs/.cert/key.pem;), copy the certificates to...
  11. Dabombber

    ssh ServerAlive

    Seems like an awkward workaround to your ssh client not properly detecting lost connections. Setting ConnectTimeout by itself should be enough shouldn't it, are you sure TCPKeepAlive is enabled?
  12. Dabombber

    Lets Encrypt not updating, or?

    Ok, I think I have a solution for *.asuscomm.com certificates. Add the following script to /opt/share/acme/dnsapi, or wherever you've set it to install to You should then be able to get a certificate using dns_asus for the dns option, for example acme --issue --dns dns_asus -d...
  13. Dabombber

    Script for creating random numbers, and more

    Nice. A while back when I needed a random hex string I ran into a bunch of linux/asuswrt oddities, this would have been handy then. A couple of things, the hex variable seems like a pointless intermediary step when you could set the characters directly, something like Should [[d] l] be [d...
  14. Dabombber

    Lets Encrypt not updating, or?

    You'll need to issue a cert first, there's guides for various DNS providers here, or if yours isn't listed, you can install socat from entware and use standalone mode. Just use acme instead of acme.sh so the alias fills in the paths for you. There's a gandi example above, standalone mode would...
  15. Dabombber

    Lets Encrypt not updating, or?

    There shouldn't be any problem either way, but you might as well to stop it from trying while it's broken. Actually, the Import/Persistent Auto-generated might be better. Just set it to not generate a certificate. You might need to reinstall the cert if the webui overwrites it, and then restart...
  16. Dabombber

    Lets Encrypt not updating, or?

    Yea, that one is my bad, it looks like I browsed the repo at the point of the last commit instead of the merge (Nov 16, 2018 in this case). 6140a3c26ba5cf26bc15a88cb4477c400b207ffa should work.
  17. Dabombber

    Lets Encrypt not updating, or?

    Looks like bug with non bash shells added in the last commit, for now you can replace master.tar.gz with 6eaf2d67b7588f23f1870c8813d3d6d391820b89.tar.gz in the acme_install function to grab the version before that. Hopefully it'll be fixed or reverted soon.
  18. Dabombber

    (Free) DDNS recommendation?

    I know this isn't what you asked for, but if you're finding DDNS services to be increasingly unfriendly, it might be worth considering a domain name of your own. They can be pretty cheap and there should be scripts to update most common registrars on the wiki.
  19. Dabombber

    Lets Encrypt not updating, or?

    That's what I've been using for certificates for a while, although it takes a bit of tweaking to play nice with asuswrt's defaults. This might be a helpful starting point if you're going to write something, or just use it as is. Example usage would be something like ./acme.sh install # add the...
  20. Dabombber

    how to make dnsmasq and ipset affect router?

    Another option is to manually specify the DNS server in your commands/scripts so that it works regardless of the local resolver setting. nslookup bin.entware.net 127.0.0.1 One thing to watch out for in scripts is the format of the built-in nslookup differs from entware's, the following should...
Top