Swistheater
Very Senior Member
@RMerlin mine flashed fine as well.I did. My own RT-AX86U is running fine, which is why I uploaded this alpha build.
@RMerlin mine flashed fine as well.I did. My own RT-AX86U is running fine, which is why I uploaded this alpha build.
Alpha build for AX86U? I don't see that on your Test Builds repository.I did. My own RT-AX86U is running fine, which is why I uploaded this alpha build.
.
He must have pulled it. It appears 2 out of 8 users reported failed or bricked routers after flashing.Alpha build for AX86U? I don't see that on your Test Builds repository.
What more are you expecting me to test? I flashed it on my own router and it worked fine. I cannot flash test 10 different hardware revisions, I have only one single RT-AX86U.Let's hope that Asus resolves the firmware for this model AND FULLY TESTS it
It is nice to know you are at work in the thick of it all for now. I hope they manage to provide you with whatever you need.Asus are still investigating on their end. As part of their investigation they are trying to obtain more information, such as the serial numbers and MAC addresses of affected routers, which will help them figure out why only certain routers are affected. Could be a revision-specific issue for instance. I've already reached out to the two reported cases to obtain this info from them.
Asus has provided me more info which might allow me to release a safer build of the RT-AX86U (I'm waiting for a confirmation before I issue the tweaked build). In the meantime the current build was indeed pulled off the Onedrive folder.
Asus changed that recently, it should now listen to IPv6 as well.The router WebUI interface only binds to ipv4.
lighttpd is used by AiCloud, not by the management UI. That one is the httpd (and httpds) process.You can determine this by,netstat -nlp | grep lighttpd
Asus changed that recently, it should now listen to IPv6 as well.
lighttpd is used by AiCloud, not by the management UI. That one is the httpd (and httpds) process.
RT-AX88U-C7C0:/tmp/home/root# netstat -nlp | grep httpd
tcp 0 0 0.0.0.0:9443 0.0.0.0:* LISTEN 2611/lighttpd
tcp 0 0 127.0.0.1:8080 0.0.0.0:* LISTEN 21862/httpd
tcp 0 0 192.168.1.1:8080 0.0.0.0:* LISTEN 21862/httpd
tcp 0 0 0.0.0.0:8082 0.0.0.0:* LISTEN 2611/lighttpd
tcp 0 0 127.0.0.1:8443 0.0.0.0:* LISTEN 21861/httpds
tcp 0 0 192.168.1.1:8443 0.0.0.0:* LISTEN 21861/httpds
tcp 0 0 :::8080 :::* LISTEN 21862/httpd
tcp 0 0 :::8443 :::* LISTEN 21861/httpds
RPI1:~# netstat -nlp | grep httpd
tcp 0 0 0.0.0.0:80 0.0.0.0:* LISTEN 933/lighttpd
tcp6 0 0 :::80 :::* LISTEN 933/lighttpd
It's possible that the busybox netstat applet doesn't explicitly report tcp6. httpd does have explicit code to handle IPv6 (tho I cannot say if the code is finalized - I can't test it easily).Maybe the router OS does not distinguish between the two.
initialize_listen_socket(int family, usockaddr* usa, const char *ifname)
{
struct ifreq ifr;
int fd;
memset(usa, 0, sizeof(usockaddr));
usa->sa.sa_family = family;
switch (family) {
case AF_INET:
usa->sa_in.sin_addr.s_addr = htonl(INADDR_ANY);
usa->sa_in.sin_port = htons(http_port);
usa->sa_len = sizeof(usa->sa_in);
break;
#ifdef RTCONFIG_IPV6
case AF_INET6:
usa->sa_in6.sin6_addr = in6addr_any;
usa->sa_in6.sin6_port = htons(http_port);
usa->sa_len = sizeof(usa->sa_in6);
break;
#endif
default:
return -1;
}
GT-AX11000 dirty update seems stable only encountered issue is Aura RGB reenables itself after scheduled reboot despite previously disabling either through settings or button prior to the device rebooting.
Are you disabling it through the global LED disable (on the System page) or only the Aura RGB itself (on the Aura tab)?Confirmed for me too re: Aura RGB reenabling itself after reboot (scheduled or forced). Off prior to reboot, enabled after reboot. GT-AX11000 running GT-AX11000_386.7_alpha1-g8ee6420ea6_cferom_ubi.w
Chill ... No one has blamed you for the bricking - least of all me ... my plea was directed to ASUS who must remain responsible for their own GPL and have the resources (and responsibility) to thoroughly test their firmware BEFORE providing same to you or the public at large.What more are you expecting me to test? I flashed it on my own router and it worked fine. I cannot flash test 10 different hardware revisions, I have only one single RT-AX86U.
Different different router/setups etc but FWIW on the router/setup that I have, it's now this (expected):Code:RT-AX88U-C7C0:/tmp/home/root# netstat -nlp | grep httpd tcp 0 0 0.0.0.0:9443 0.0.0.0:* LISTEN 2611/lighttpd tcp 0 0 127.0.0.1:8080 0.0.0.0:* LISTEN 21862/httpd tcp 0 0 192.168.1.1:8080 0.0.0.0:* LISTEN 21862/httpd tcp 0 0 0.0.0.0:8082 0.0.0.0:* LISTEN 2611/lighttpd tcp 0 0 127.0.0.1:8443 0.0.0.0:* LISTEN 21861/httpds tcp 0 0 192.168.1.1:8443 0.0.0.0:* LISTEN 21861/httpds tcp 0 0 :::8080 :::* LISTEN 21862/httpd tcp 0 0 :::8443 :::* LISTEN 21861/httpds
**/tmp/home/root# netstat -nlp | grep httpd
tcp 0 0 127.0.0.1:80 0.0.0.0:* LISTEN 670/httpd
tcp 0 0 127.0.0.1:8443 0.0.0.0:* LISTEN 669/httpds
tcp 0 0 192.168.1.1:8443 0.0.0.0:* LISTEN 669/httpds
tcp 0 0 :::8443 :::* LISTEN 669/httpds
**/tmp/home/root#
Are you disabling it through the global LED disable (on the System page) or only the Aura RGB itself (on the Aura tab)?
it happened to me as well.I did just have this after about 4 days of no issues. 5G channels didn't want to connect at all; a quick restart and it all came up again
My misunderstanding then, I thought you were talking about my provided builds.Chill ... No one has blamed you for the bricking - least of all me ... my plea was directed to ASUS who must remain responsible for their own GPL and have the resources (and responsibility) to thoroughly test their firmware BEFORE providing same to you or the public at large.
Very odd; mine has been fine since the full reboot. Hopefully it stays that wayit happened to me as well.
It looks promising. In a couple of days, I will roll up my sleeves and do some testing.It's possible that the busybox netstat applet doesn't explicitly report tcp6. httpd does have explicit code to handle IPv6 (tho I cannot say if the code is finalized - I can't test it easily).
Code:initialize_listen_socket(int family, usockaddr* usa, const char *ifname) { struct ifreq ifr; int fd; memset(usa, 0, sizeof(usockaddr)); usa->sa.sa_family = family; switch (family) { case AF_INET: usa->sa_in.sin_addr.s_addr = htonl(INADDR_ANY); usa->sa_in.sin_port = htons(http_port); usa->sa_len = sizeof(usa->sa_in); break; #ifdef RTCONFIG_IPV6 case AF_INET6: usa->sa_in6.sin6_addr = in6addr_any; usa->sa_in6.sin6_port = htons(http_port); usa->sa_len = sizeof(usa->sa_in6); break; #endif default: return -1; }
Welcome To SNBForums
SNBForums is a community for anyone who wants to learn about or discuss the latest in wireless routers, network storage and the ins and outs of building and maintaining a small network.
If you'd like to post a question, simply register and have at it!
While you're at it, please check out SmallNetBuilder for product reviews and our famous Router Charts, Ranker and plenty more!