Recent content by ccleeland

  • 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. C

    RT-AX88U 386.3_2 goes about 3-4 weeks before RAM fills up.

    Were there more than 100 lines in it? That technique will work with a standard linux/unix syslog because that code does an `fseek` to end-of-file before every write, thus it properly detects file truncation (or shortening). If the logger that's used inside merlin doesn't use that practice and...
  2. C

    Accessing upstream modem/router mgmt through merlin?

    I'm not sure why I thought this wouldn't work, but y'all are correct. It didn't work for *me* because at the time, my laptop was connected into the office via VPN, and VPN grabs all traffic not on the same subnet as my local address. The phone app doesn't find the TMO router b/c it uses some...
  3. C

    RT-AX88U 386.3_2 goes about 3-4 weeks before RAM fills up.

    That script will fail at some point when the content of however many lines overruns the maximum command buffer size for `/bin/sh` as part of the `echo $(tail ...)` Safest is to do something like: tmpfilename="/tmp/mktemp.$$" tail -n $LINES $LOGFILE > $tmpfilename cat $tmpfilename > $LOGFILE rm...
  4. C

    Accessing upstream modem/router mgmt through merlin?

    is there a feature in merlin either directly or as an add-on that would permit me to access the web-based mgmt portal of an upstream device? I'm trying out a T-Mobile Home Internet Gateway to see if it can replace my hard line. The jury is still out on the raw service for me because they're...
Top