What's new

[Fork] Asuswrt-Merlin 374.43 LTS releases (Archive)

  • 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!

Hello
I have a AC66U. Iam connected over WAN Ftp. In the syslog i cant find any logs what iam doing on my ftp server.Under Systemprotocol no entry

Default router mesSyslog log level: INFO
Syslog log level: INFO

Any help please?
 
Hello
I have a AC66U. Iam connected over WAN Ftp. In the syslog i cant find any logs what iam doing on my ftp server.Under Systemprotocol no entry

Default router mesSyslog log level: INFO
Syslog log level: INFO

Any help please?
FTP logging isn't enabled by default. You would have to create a vsftpd.postconf script to enable it.
 
Keep on forking on...and a GitHub push!

https://github.com/john9527/asuswrt-merlin

374.43_41E7j9527 (12-February-2020) ARM SDK, MIPS,ARM KRACK
- CHANGED: other: (backport) update get_webui_page(), add functions to get/set addon settings
- CHANGED: others: (backport) replace Entware setup script with link to amtm
- CHANGED: others: (backport) added amtm script merlinng 384.15
- CHANGED: httpd: (backport) improve connection acceptance and handling
- CHANGED: httpd: (backport) fix malformed 200 OK status
* FIXED: others: fix script permissions
 
Last edited:
Keep on forking on...and a GitHub push!

https://github.com/john9527/asuswrt-merlin

374.43_41E7j9527 (12-February-2020) ARM SDK, MIPS,ARM KRACK
- CHANGED: other: (backport) update get_webui_page(), add functions to get/set addon settings
- CHANGED: others: (backport) replace Entware setup script with link to amtm
- CHANGED: others: (backport) added amtm script merlinng 384.15
- CHANGED: httpd: (backport) improve connection acceptance and handling
- CHANGED: httpd: (backport) fix malformed 200 OK status
* FIXED: others: fix script permissions

Thumbs up to John9527!
 
41E8 also fixes the new Edge layoutNG issue too (of course since its also Chromium but just sayin. :) ) BTW the new Edge is actually pretty nice browser now.
 
Is there an idiots guide for installing this firmware on an AC66U? I downloaded the latest zip file which is like 800GB but I don't see a .trx file? Also, any chance this has AIMesh support? TIA
 
Last edited:
Is there an idiots guide for installing this firmware on an AC66U? I downloaded the latest zip file which is like 800GB but I don't see a .trx file? Also, any chance this has AIMesh support? TIA

Download just the archive you need, not the entire folder (which is why it was so large).

No, there's no AiMesh support.
 
Thank you. Installed latest build without issue. Nice to see this older model still getting updates. Now I just have to find my glue gun and resolve the broken power button issue.
 
41E8 secure (https) webui is still broken on mips AC66U
Code:
Feb 14 19:57:04 rc_service: service 1404:notify_rc restart_httpd
Feb 14 19:57:04 httpd: start httpd
Feb 14 19:57:04 httpd: start httpd - SSL
Feb 14 19:57:04 syslog: Generating SSL certificate...
Feb 14 19:57:04 httpd: Failed to initialize SSL, generating new key/cert.
Feb 14 19:57:04 syslog: Generating SSL certificate...
Feb 14 19:57:05 httpd: Failed to initialize SSL, generating new key/cert.
Feb 14 19:57:05 httpd: Unable to start in SSL mode, exiting!
 
41E8 secure (https) webui is still broken on mips AC66U
Code:
Feb 14 19:57:04 rc_service: service 1404:notify_rc restart_httpd
Feb 14 19:57:04 httpd: start httpd
Feb 14 19:57:04 httpd: start httpd - SSL
Feb 14 19:57:04 syslog: Generating SSL certificate...
Feb 14 19:57:04 httpd: Failed to initialize SSL, generating new key/cert.
Feb 14 19:57:04 syslog: Generating SSL certificate...
Feb 14 19:57:05 httpd: Failed to initialize SSL, generating new key/cert.
Feb 14 19:57:05 httpd: Unable to start in SSL mode, exiting!
Try this via SSH:
Code:
cd /tmp/etc
/usr/sbin/gencert.sh
service restart_httpd
 
Ok this fix the certificate but after rebooting goes back again
OK try this:
Code:
cd /tmp/etc
/usr/sbin/gencert.sh
tar -C / -czf /tmp/cert.tgz etc/cert.pem etc/key.pem

mkdir /jffs/https
cp /tmp/cert.tgz /jffs/https/cert.tgz

nvram set https_crt_save=1
nvram set https_crt_file="/jffs/https/cert.tgz"
nvram commit

service restart_httpd

EDIT: If you wanted to store the certificates in NVRAM (like they usually are) rather than jffs you could do the following instead:
Code:
cd /tmp/etc
/usr/sbin/gencert.sh
tar -C / -czf /tmp/cert.tgz etc/cert.pem etc/key.pem

rm -fr /jffs/https

nvram set https_crt_save=1
nvram set https_crt_file="$(base64 /tmp/cert.tgz | tr -d '\n')"
nvram commit

service restart_httpd
 
Last edited:
OK try this:
Code:
cd /tmp/etc
/usr/sbin/gencert.sh
tar -C / -czf /tmp/cert.tgz etc/cert.pem etc/key.pem

mkdir /jffs/https
cp /tmp/cert.tgz /jffs/https/cert.tgz

nvram set https_crt_save=1
nvram set https_crt_file="/jffs/https/cert.tgz"
nvram commit

service restart_httpd
It is working after reboting, but secure webui is slower now

"Stablishing secure connection.." time has increased and some times pages are not properly drawn
 
Last edited:
It is working after reboting, but secure webui is slower now

"Stablishing secure connection.." time has increased and some times pages are not properly drawn
Yes. If you import the cert.pem file you created into your browser's "Trusted Root Certification Authorities" certificate store the speed will return to normal.
 
Upgraded RT-AC66U A1 - Qty3 , from ASUS Merlin V380.70 to ASUS Merlin LTS Fork V374.43_41E8j9527 via ASUS Restoration Tool and "nvram erase" procedures previously, and setup manually for each AP and all appears to be working properly.
 
OK try this:
Code:
cd /tmp/etc
/usr/sbin/gencert.sh
tar -C / -czf /tmp/cert.tgz etc/cert.pem etc/key.pem

mkdir /jffs/https
cp /tmp/cert.tgz /jffs/https/cert.tgz

nvram set https_crt_save=1
nvram set https_crt_file="/jffs/https/cert.tgz"
nvram commit

service restart_httpd
Is it possible to set pixelsrv certificate as https certificate for the webui in the same way? There is a script on GitHub for automation process but doesn't support mips
 
Last edited:

Latest threads

Sign Up For SNBForums Daily Digest

Get an update of what's new every day delivered to your mailbox. Sign up here!
Top