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

    [WICENS] WAN IP Change Email Notification Script

    Forgive the newbness of my coding ;) wicens started out as a 20 line script for personal use and grew to what it is now and I still have extremely limited knowledge around sendmail/curl/mime formatting Ill look at getting this fixed but will require more than a one line edit
  2. Maverickcdn

    [WICENS] WAN IP Change Email Notification Script

    Fixed 3.11 Use option F to update Please run another test and let me know, thanks
  3. Maverickcdn

    [WICENS] WAN IP Change Email Notification Script

    Yes we have one difference in our curl commands in --mail-from. After reading the man page I see I have it incorrect I will update it to match amtm
  4. Maverickcdn

    ddns ip whitelist with little script.

    Everything needs to be inside while loop, move 'done < /jffs/scripts/update-ip.csv' to the bottom of the file
  5. Maverickcdn

    ddns ip whitelist with little script.

    If it were me Id create a file listing out all the ddns names then create a while loop containing the above script to iterate through the list while read -r ddnsuser ; do log_file="/tmp/mnt/RT-AX86U/log/${ddnsuser}.log" .... done < /jffs/scripts/ddnslist.txt
  6. Maverickcdn

    [WICENS] WAN IP Change Email Notification Script

    Do you have 2FA enabled? Google used to have a toggle to allow 'Less Secure App' access using only your Email/password. This has been removed for a year now and you are required to enable 2FA and use specific app passwords Google App Passwords
  7. Maverickcdn

    ddns ip whitelist with little script.

    Warning, newb advice incoming Run your script with the code below to see everything it is processing. sh -x /jffs/scripts/test-update.sh if [ "$IP" -eq = "1" ] ; then This is causing the bad number error '-eq =' , but if $IP is an actual IP it will never equal 1 #!/bin/sh VER="v1.01a"...
  8. Maverickcdn

    Release Asuswrt-Merlin 386.10 is now available for AC models

    Filthy upgrade from 386.9. 4 Days up, logs are clean and smooth sailing as usual As always appreciate your efforts.
  9. Maverickcdn

    RT-N66U CFE Upgrade

    I have 2 copies of 1.0.1.9 from different routers if you're interested. Also have 1.0.1.2
  10. Maverickcdn

    Email Notice from SSH event

    You could write your email notification script, then call it with an entry in /jffs/configs/profile.add Not sure how to handle disconnect though
  11. Maverickcdn

    WANFailover Dual WAN Failover ***v2 Release***

    Shell check doesnt like something in restartwan0 () Line 3850: restartwan0 () ^-- SC1009 (info): The mentioned syntax error was in this function. Line 3851: { ^-- SC1073 (error): Couldn't parse this brace group. Fix to allow more checks. Line 3912: [ ! -z "${wan0state+x}" ] &>/dev/null...
  12. Maverickcdn

    Asus RT-AC86U - Firmware update 386.9_0 (most recent update) breaks the easy-rsa package as there is no openssl-1.1.1.cnf file

    Although kinda frowned upon I store my ca, key, cert, tls-crypt, dh files on a USB on the router If you're on a windows machine you can download the Openvpn installer and Easyrsa3 is included if you add the option in custom install Setup your vars file in the program files/openvpn/easy-rsa...
  13. Maverickcdn

    Release Asuswrt-Merlin 386.9 is now available for AC models

    Up 12 days all good here... Except had this in the log yesterday, couldn't find this in historical logs or in previous fw logs... from the spelling Ill assume Asus added something.... just curious about it Jan 17 17:17:26 dropbear[25966]: Exit (master) from <10.1.1.4:50100>: Exited normally Jan...
  14. Maverickcdn

    Release Asuswrt-Merlin 386.9 is now available for AC models

    Had a good run on 386.7_0 Dirty upgrade smooth as can be... thanks for everything you do.
  15. Maverickcdn

    amtm amtm - e-mail settings.

    amtm has the --ssl-reqd flag set, you may not be able to get around it as Id imagine with that flag set curl won't revert to plainauth You could maybe try removing that flag in /jffs/addons/amtm/email.mod in the send_testmail() function and do another test and if it works Im not sure where else...
  16. Maverickcdn

    amtm amtm - e-mail settings.

    Try unsetting the '--insecure' flag to nothing My guess is curl won't revert to plainauth if there is an ssl flag set
  17. Maverickcdn

    AMTM Email Settings Failure

    Change option 5 'user name' to your from(login) address eg. xxxx@outlook.com Also you can change 9 to smtps
  18. Maverickcdn

    [WICENS] WAN IP Change Email Notification Script

    Version 3.10 is up with amtm sync and a couple other minor script changes
  19. Maverickcdn

    [WICENS] WAN IP Change Email Notification Script

    Are you saying wicens is spamming the log with cron runs? Can you share what the log message is so I can look into it?
  20. Maverickcdn

    [WICENS] WAN IP Change Email Notification Script

    Sorry the script redundancies/features are too heavily dependent on cron. Careful changing cron in this script, specifically regarding WAN IP change notifications, if the Email fails to send for whatever reason during the call from wan-event it relies on the cron calls to re-attempt sending the...
Top