Recent content by SullyTheUnusual

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

    Limit bandwidth for guest network on AsusWRT-Merlin

    I got this to work for limiting bandwidth on my router, but the command "tc qdisc del dev <dev> root" does not remove the rules. It returns "RTNETLINK answers: No such file or directory". Anyone else experiencing this?
  2. SullyTheUnusual

    Setting a random password for guest wifi

    I found an easier way (for me) to manage my kid's WiFi access. I enable/disable guest networks via a small script that my wife and I can run from a term app on our phones. The networks then automatically turn off via a cron set to run in the evening. This way, they don't have to "forget the...
  3. SullyTheUnusual

    Setting a random password for guest wifi

    Thanks for trying. I wonder if there's any way to install the "mail" app?
  4. SullyTheUnusual

    Setting a random password for guest wifi

    2-step verification is not enabled on my account.
  5. SullyTheUnusual

    Setting a random password for guest wifi

    Yes, I have the certificate file in place. I followed your instructions exactly.
  6. SullyTheUnusual

    Setting a random password for guest wifi

    I've added my own email address and password to FROM, AUTH, PASS and TO. It's doing the same thing. I've added the "-v" flag, and removed "-quiet" and this is the output: sendmail: send:'NOOP' depth=3 C = US, O = Equifax, OU = Equifax Secure Certificate Authority verify return:1 depth=2 C =...
  7. SullyTheUnusual

    Setting a random password for guest wifi

    Sorry if this is a dumb question, but I don't know a lot about using sendmail with Gmail. Here's my output: depth=3 C = US, O = Equifax, OU = Equifax Secure Certificate Authority verify return:1 depth=2 C = US, O = GeoTrust Inc., CN = GeoTrust Global CA verify return:1 depth=1 C = US, O =...
  8. SullyTheUnusual

    Monitoring Web Usage with Asuswrt-Merlin

    Aww! Can't believe I didn't catch that! Works perfectly! Many thanks! :D :D
  9. SullyTheUnusual

    Monitoring Web Usage with Asuswrt-Merlin

    Yes, I'm using a cron to execute my daily.sh script. Everything in the script runs fine except the "iptables" and "service" commands. Here's my daily.sh script: #!/bin/sh # Reformat the webmon output to convert epoch date to general date string domains="/proc/webmon_recent_domains"...
  10. SullyTheUnusual

    Monitoring Web Usage with Asuswrt-Merlin

    I've been using vi all along, no ^M chars.
  11. SullyTheUnusual

    Monitoring Web Usage with Asuswrt-Merlin

    Running those two commands at the shell prompt works brilliantly! However, they will not execute via script. I have even tried supplying the full path to "iptables" and "service".
  12. SullyTheUnusual

    Monitoring Web Usage with Asuswrt-Merlin

    Here are the commands I used to enable web monitoring: iptables -t filter -N web_monitor iptables -t filter -I FORWARD -o eth0 -j web_monitor iptables -A web_monitor -p tcp -m webmon --max_domains 2000 --max_searches 2000 I ran the first command you suggested, and it did clear the contents of...
  13. SullyTheUnusual

    Monitoring Web Usage with Asuswrt-Merlin

    After converting/logging everything in /proc/webmon_recent_domains, I want to wipe the contents so I don't get duplicates the next time I append to my logs. Since this isn't a real file, I was trying to use the "iptables --flush" and then reboot to accomplish it. The two lines in my...
  14. SullyTheUnusual

    Monitoring Web Usage with Asuswrt-Merlin

    Ok, I need some help with a script for my Asus router. Using the information in this thread, I have successfully set up the web activity monitor. I wrote a daily maintenance script which converts everything in /proc/webmon_recent_domains to a readable format, copies it to my USB drive, flushes...
Top