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. P

    ASUSwrt DNSMASQ service can't be restarted

    Found dnsmasq can still resolve names but couldn't offer IP address by its DHCP service. Run "service restart_dnsmasq" but no "Done" output. checked syslog, the output was: Apr 18 11:09:31 rc_service: service 23364:notify_rc restart_dnsmasq Apr 18 11:09:31 rc_service: waitting...
  2. P

    getop long options not work

    Hi, all, I have a simple script where I would like to use getopt long option, seems it can't work on ASUSwrt, do you have any idea? Here is the simplified script: #!/usr/sh args=$(getopt -l us,ca,mx,misc -- "$@") if [ $? != 0 ] ; then echo "Terminating..." >&2 ; exit 1 ; fi eval set -- "$args"...
  3. P

    Is there a way to suppress a specific message from syslog?

    Hi, guys, My AX-56U router recently got overwhemled by a specific msg in syslog, it looked like this format: I got thousands of them, making me hard to find other critical information. I have increased my syslog size to 2048 by nvram set log_size=2048 admin@RT-AX56U:/tmp# grep "kernel: TCP...
  4. P

    ASUSwrt dnsmasq addn-hosts entry limit

    Hi, Seems on my ASUSwrt, the dnsmasq addn-hosts entries are limited. I have the following config on the dnsmasq user conf file: addn-hosts=/jffs/hosts. Then I download multiple ad-block and malware-block hosts file from Internet and put to the directory /jffs/hosts. The total entries in...
  5. P

    kernel: TCP: mptcp_fallback_infinite

    Hi,Guys, I have setup dual WAN on my router for over two years. Today I found in the syslog it displayed the following error msg. (The total threads was over 1200 since yesterday). So far no impact to my home network. maven@PSU-AX56U-CM:/jffs# grep "kernel: TCP: mptcp_fallback_infinite"...
  6. P

    My ASUS AX-56U date/time changed to default after WAN disconnected for over 30 minutes

    Hi, Guys, I found my AX-56U router's syslog timestamp changed to May 5,2018 when I was reviewing the syslog file for trouble shooting. The router did not reboot for about 2 weeks and I had no power outage at home. After I narrowed down , I found this happened days ago when there was a storm...
  7. P

    NVRAM Dual-WAN nvram: wans_routing_rulelist

    Hi, I found I got duplicated nvram values for wans_routing_rulelist. One is empty, the other seems correct and working. Not sure why this happened. How can I correct it and prevent it from happening again? maven@PSU-AX56U-1:/tmp/home/root# nvram show 2>/dev/null | grep wans wans_cap=wan lan...
  8. P

    In Asuswrt, how to display the log timestamp with nano seconds?

    Seems the following command does not work in my Asus router. Does anybody know how to display the timestamp in nano seconds? maven@PSU-AX56U-1:/jffs/scripts# date +"%T.%N" 14:45:20.%N maven@PSU-AX56U-1:/jffs/scripts# date +"%T.%3N" 14:50:21.%3N I believe the router has this capability as I...
  9. P

    asuswrt crond jobs scheduled on weekends

    I have a daily job to run every day, however, I want to schedule it in different time slot during weekend(Saturday and Sunday), here is what I have done on Asuswrt cru 1) 50 8,13 * * 1-5 /bin/sh /jffs/scripts/daily_job/listwan-rc-1.sh #listwan-rc-weekday# 2) 50 2 * * 6,7 /bin/sh...
Top