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

    Where to start with automatic scripting for AsusWRT-Merlin

    To answer @Undareth the OPs original question... I myself perused other script writers projects on github for ideas and implemented many of their lines of code in my own work. I've been on/off fooling around for over 5 years now and its mind blowing going back to my original work and comparing...
  2. Maverickcdn

    Release Asuswrt-Merlin 3004.388.6 is now available

    386 worked for me... something about 388? /jffs/syslog.log:Feb 27 04:08:27 custom_script: Running /jffs/scripts/update-notification /jffs/syslog.log:Feb 27 04:08:27 update-notification[1924]: Started wicens with pid 1925 /jffs/syslog.log:Feb 27 04:08:27 wicens[1925]: fwupdate: Started by...
  3. Maverickcdn

    uKasa uKasa - A utility script that manages Kasa smart outlets and switches with Asuswrt-Merlin routers

    I've run George Georgovassilis' version of this on my server for years now, works great, nice to see it adapted for use with asuswrt-merlin edit: Just realized the one I linked is a different version than what I have saved. Mine is much more complex, the git version is much simpler and works...
  4. Maverickcdn

    Need Help Setting Up Email Notifications for IP Changes on RT-AC86U

    Re-reading you original message from January I think I got confused on what your actual issue was. Option T|t in wicens only tests that the Email functionality is working, it will always show [FAIL] when comparing IPs as its comparing x.x.x.x against your current saved WAN IP in test mode...
  5. Maverickcdn

    Need Help Setting Up Email Notifications for IP Changes on RT-AC86U

    What is the output of the following 2 commands? nvram get wan0_ipaddr sh /usr/sbin/getrealip.sh | grep -Eo "([0-9]{1,3}[\.]){3}[0-9]{1,3}" You're not using dual wan correct?
  6. Maverickcdn

    Home networking

    Would be worth ensuring Network Discovery is on as well
  7. Maverickcdn

    Anyways to see list of WAN IP's given by ISP in the router

    Shameless plug... Or install wicens (WAN IP Change Email Notification Script) from AMTM and setup Email notifications for WAN IP changes with historical IPs and lease times
  8. Maverickcdn

    VPN Server on port 53/443?

    Its available through Entware although YMMV installing on an embedded device, personally I run it separately on a much more powerful Linux machine acting as a proxy
  9. Maverickcdn

    VPN Server on port 53/443?

    +1 vote for TCP/993 (TLS Email port) Although equally as susceptible to scanning I see far less probing of 993 vs 443 (avg 32 hits/day vs 100+ on 443)
  10. Maverickcdn

    wgclient-start with iptables nat rules after router reboot

    Missing a closing brace } on your echo or its an erroneous { Otherwise glad we were able to lead you in the right direction!
  11. Maverickcdn

    wgclient-start with iptables nat rules after router reboot

    :confused: bummer, was a wild a** guess. Someone else might have a better idea.
  12. Maverickcdn

    wgclient-start with iptables nat rules after router reboot

    My guess... the firewall gets reloaded multiple times on startup, what Im thinking is wgclient-start is run at boot and later on during boot the firewall gets reloaded erasing your rules... check in syslog for May 4 23:05:11 MyROUTERname rc_service: waitting "restart_firewall" via ...
  13. Maverickcdn

    Release Asuswrt-Merlin 386.12 is now available for AC models

    Looking promising... the fatal error message has returned like in <2.6.7 , thank you fine sir Nov 21 22:03:33 MavMAIN kernel: obfsproxy993 IN=eth0 OUT=br0 MAC=04:92:26:80:8b:08:00:01:5c:97:f8:45:08:00 SRC=72.143.234.93 DST=10.1.1.11 LEN=60 TOS=0x10 PREC=0x40 TTL=53 ID=0 DF PROTO=TCP SPT=3249...
  14. Maverickcdn

    Release Asuswrt-Merlin 386.12 is now available for AC models

    Thanks, I've been up 50 hours and have had 4 crashes since, thankfully the watchdog works great I'll wait patiently for the next update of the firmware with 2.6.8 and hope they've resolved it
  15. Maverickcdn

    Release Asuswrt-Merlin 386.12 is now available for AC models

    Just posting for informational purposes... I have never ever seen openvpn crash in all my years running merlin. This happened with an obfsproxy server on the lan forwarded to the openvpn server, but I've run this setup 24/7 since the 384.x days without issue. Because obfsproxy runs on port 993...
  16. Maverickcdn

    Notification on OpenVPN client connection?

    You might not even need a separate caller script like I mentioned earlier, might just need to put your pushbullet command in the background inside /jffs/scripts/notifyme.sh by adding & to the end or having an explicit exit 0 after the pushbullet command. #!/bin/sh pushbullet_message() { ... }...
  17. Maverickcdn

    Notification on OpenVPN client connection?

    My noob guess is client-connect /jffs/scripts/notifyme.sh has an exit code of 1 from the pushbullet command which borks the VPN If it were me I would try creating a separate caller script /jffs/scripts/vpnconnect.sh and within it call your /jffs/scripts/notifyme.sh & in the background
  18. Maverickcdn

    Need help with syslog being spammed with kernel messages

    Do you have entware installed with dig installed?
  19. Maverickcdn

    Normal For Logs To Be Full Of These Events?

    Wireless Lan Controller Event Daemon Could be numerous things, DHCP renewal, Group Key etc, its debugging info to help diagnose connection issues. Personally I kill the wlceventd at startup to stop these logged messages, never ever noticed wifi connection issues in all the years Ive been...
  20. Maverickcdn

    Does firewall-start Script Ever Run Twice With Same iptables Rules?

    I don't reboot (AsusWRT-Merlin is too stable haha) ;) Thanks at @ColinTaylor for the clarification. I may have never noticed an issue as I have a separate script with cron @ 2mins that verifies my rules in INPUT/FORWARD and will run service restart_firewall if an error is found as the majority...
Top