New Build - 02/28/2023 - r51887

Post new topic   Reply to topic    DD-WRT Forum Index -> Atheros WiSOC based Hardware
Goto page Previous  1, 2, 3, 4  Next
Author Message
KACTET
DD-WRT User


Joined: 01 May 2022
Posts: 254

PostPosted: Wed Mar 01, 2023 17:31    Post subject: Reply with quote
Router/Version: TP-Link TL-WR841ND v11
Update method: WebUpgrade
File/Kernel: tl-wr841nd-webflash.bin / Linux 3.18.140-d6 #165135 Tue Feb 28 05:51:17 +06 2023 mips
Previous/Reset: r51855 / no
Mode/Status: AP wired and wireless / Up and running for 4:30 hours
Issues/Errors: Nothing significant

The fact is that the router connected to the Internet (to the Internet provider). And it reports an error, the orange WAN indicator flashes (the icon in the form of a planet). Internet is working, I just think it's a glitch

Thank you BS and gurus!

_________________
Atheros
Netgear XR500 Nighthawk - DD-WRT 54545
Tp-Link TL-WDR4900 v1.3 - DD-WRT 53133
TP-Link WR1043ND v4 - DD-WRT 51838
TP-Link WR1043ND v2 - Gargoyle OS 1.13.0
TP-Link WR841ND v11 - DD-WRT 55819
Broadcom
Asus RT-AC87U R - DD-WRT 55819
Asus RT-N66U - DD-WRT 55819
Linksys WRT54GL v1.1 - DD-WRT 54517M
Linksys WRT54GL v1.1 - FreshTomato 2023.4_MIPS_K26
Linksys WRT54GL v1.1 - Gargoyle OS 1.6.2
Sponsor
MesMurized
DD-WRT User


Joined: 08 Aug 2017
Posts: 84

PostPosted: Wed Mar 01, 2023 18:13    Post subject: Reply with quote
Update method: SSH / CLI
Router/Version: Netgear R9000 Nighthawk X10
File/Kernel: DD-WRT v3.0-r51887 std (02/28/23)
Previous/Reset: r51787 std (02/20/23) / No reset
Mode/Status: Gateway / Working Normally
Errors: None

Issues: findfs applet missing in BusyBox 1.36.0
Last build available: r51787 - 2/20/23
Simplifies mounting by label/UUID at boot.
Work-around: blkid is available, prefer findfs

_________________
Current: Netgear R9000 DD-WRT v3.0-r55460 std (03/25/24)
Retired: Linksys WRT32X r39296, TP-Link Archer C7 v2, LinkSys WRT54G v5
ArjenR49
DD-WRT Guru


Joined: 05 Oct 2008
Posts: 666
Location: Helsinki, Finland / nr. Alkmaar, Netherlands

PostPosted: Wed Mar 01, 2023 23:12    Post subject: Reply with quote
MesMurized wrote:

Issues: findfs applet missing in BusyBox 1.36.0
Last build available: r51787 - 2/20/23
Simplifies mounting by label/UUID at boot.
Work-around: blkid is available, prefer findfs


Findfs is available from Entware.
MesMurized
DD-WRT User


Joined: 08 Aug 2017
Posts: 84

PostPosted: Thu Mar 02, 2023 1:29    Post subject: Reply with quote
ArjenR49 wrote:

Findfs is available from Entware.
Sure is. But it's not available until after filesystems are mounted. Catch-22
_________________
Current: Netgear R9000 DD-WRT v3.0-r55460 std (03/25/24)
Retired: Linksys WRT32X r39296, TP-Link Archer C7 v2, LinkSys WRT54G v5
Wildlion
DD-WRT Guru


Joined: 24 May 2016
Posts: 1416

PostPosted: Thu Mar 02, 2023 1:42    Post subject: Reply with quote
thommy181 wrote:

When yo use this newest build on this model your Settings -> switch config tab is configurable ? Actually I'm stay on build 02/07/23, becuase when I'm touch options in settings -> switch config tab then click save and click apply settings router totally stop respond. I can't use wired connection internet, GUI, ssh management. I can solve problems with restore factory defaults and make fresh configuration. All features operating until I try to reconfigure switch options. Cause that problem is exist I'm decide to use older build where all features work good.


Yes it is configurable, but I would need to test to verify. when I originally flashed the switch would not give a dhcp ip address and setting a static address did not help. Since I use it as a station (ie wireless client that connects wired devices), I was able to check and it was getting a WAN address. luckily I have a hardware mod where I have already attach a serial cable and drilled a hole so I connected and was able to inspect. The system did detect the ports being connected via the logs. The system itself did seem fine, so I am wondering if there is something with the switch config.

I will play with it more since you asked, but I am pretty confident it has the problem you described.
ArjenR49
DD-WRT Guru


Joined: 05 Oct 2008
Posts: 666
Location: Helsinki, Finland / nr. Alkmaar, Netherlands

PostPosted: Thu Mar 02, 2023 7:12    Post subject: Reply with quote
MesMurized wrote:
ArjenR49 wrote:

Findfs is available from Entware.
Sure is. But it's not available until after filesystems are mounted. Catch-22


Thanks for alerting me to that.

There are currently no drives attached to my R7800 router other than the thumbdrive with jffs and optware, so I haven't actually tested if my mounting script still works with findfs. However, see below.

I have the router copy commands scripts from /jffs to /tmp/root before my NAS mounting script is executed (currently it just doesn't find any drives).

The essence of my startup script:

...

# Delay until jffs and optware partitions are mounted (max. 10 sec each)
logger -t --- "Delay $0 script execution until jffs & optware mount"
is-mounted /jffs 10
is-mounted /opt 10

logger -t --- "Copy essential files to router ~ directory (in RAM)"
cp /jffs/command_scripts/profile /tmp/root/.profile
cp /jffs/command_scripts/myShutdown.sh /tmp/root
cp /jffs/command_scripts/firewall.sh /tmp/root
cp /jffs/command_scripts/mountNASdrives.sh /tmp/root

logger -t --- "CPU governor settings"
## --------------------------------------------------------------------
# Enable CPU frequency scaling for both CPU's
echo ondemand > /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor
echo ondemand > /sys/devices/system/cpu/cpu1/cpufreq/scaling_governor

# Default up_threshold as per BS is 80% ...
echo 20 > /sys/devices/system/cpu/cpufreq/ondemand/up_threshold

# Default sampling_down_factor is 1, some prefer 10 ...
echo 5 > /sys/devices/system/cpu/cpufreq/ondemand/sampling_down_factor

....

# Final step for activating Entware (~Optware) ...
# Start all init scripts in /opt/etc/init.d including symlinks
sleep 10
logger -t --- "Activate Entware through rc.unslung"
/opt/etc/init.d/rc.unslung start
sleep 5

/tmp/root/mountNASdrives.sh
logger -t --- "End of $0 script."


Because of your comment I checked the syslog for messages about the use of findfs in the mounting script, but there was nothing worrying there. The script looked for a few drives with particular UUID's but didn't find them, as was to be expected. No complaints about findfs whatsoever.
With a suitable startup sequence, it looks like findfs can replace the more complicated blkid command line.

Yesterday I set up the Entware installation again from scratch and also installed blkid from Entware to replace the Busybox version. As it came, it could only be executed using its full path.
Some linking would be required to make it otherwise.
MesMurized
DD-WRT User


Joined: 08 Aug 2017
Posts: 84

PostPosted: Thu Mar 02, 2023 8:23    Post subject: Reply with quote
ArjenR49 wrote:
Thanks for alerting me to that.

BTW: Since blkid is still included in the newer fw's, I use this to extract the device
Code:
New: L=opt; part=`blkid | sed -n "/\"$L\"/ s/\: .*$//"p`
Old: L=opt; part=`findfs LABEL=$L`

_________________
Current: Netgear R9000 DD-WRT v3.0-r55460 std (03/25/24)
Retired: Linksys WRT32X r39296, TP-Link Archer C7 v2, LinkSys WRT54G v5
Alozaros
DD-WRT Guru


Joined: 16 Nov 2015
Posts: 6447
Location: UK, London, just across the river..

PostPosted: Thu Mar 02, 2023 9:10    Post subject: Reply with quote
you dont have to use
is-mounted /jffs 10
is-mounted /opt 10

you just save your scripts/commands to save USB and it will execute those once USB is up and running..
also you can use automount future just label those partition OPT or JFFS and enable aoutomount...

you can install findfs if its not present via entware and don't need to do anithing sketchy to make it work...
to start entware save this in usb script

/opt/etc/init.d/rc.unslung start

_________________
Atheros
TP-Link WR740Nv1 ---DD-WRT 55630 WAP
TP-Link WR1043NDv2 -DD-WRT 55723 Gateway/DoT,Forced DNS,Ad-Block,Firewall,x4VLAN,VPN
TP-Link WR1043NDv2 -Gargoyle OS 1.15.x AP,DNS,QoS,Quotas
Qualcomm-Atheros
Netgear XR500 --DD-WRT 55779 Gateway/DoH,Forced DNS,AP Isolation,4VLAN,Ad-Block,Firewall,Vanilla
Netgear R7800 --DD-WRT 55819 Gateway/DoT,AD-Block,Forced DNS,AP&Net Isolation,x3VLAN,Firewall,Vanilla
Netgear R9000 --DD-WRT 55779 Gateway/DoT,AD-Block,AP Isolation,Firewall,Forced DNS,x2VLAN,Vanilla
Broadcom
Netgear R7000 --DD-WRT 55460 Gateway/SmartDNS/DoH,AD-Block,Firewall,Forced DNS,x3VLAN,VPN
NOT USING 5Ghz ANYWHERE
------------------------------------------------------
Stubby DNS over TLS I DNSCrypt v2 by mac913
MesMurized
DD-WRT User


Joined: 08 Aug 2017
Posts: 84

PostPosted: Thu Mar 02, 2023 17:22    Post subject: Reply with quote
Alozaros wrote:
you dont have to use

With /jffs internal, 2 flash drives & 2 partitions each, automount is unpredictable.

We should continue this outside this thread.

_________________
Current: Netgear R9000 DD-WRT v3.0-r55460 std (03/25/24)
Retired: Linksys WRT32X r39296, TP-Link Archer C7 v2, LinkSys WRT54G v5
KACTET
DD-WRT User


Joined: 01 May 2022
Posts: 254

PostPosted: Thu Mar 02, 2023 22:44    Post subject: Reply with quote
Router/Version: Netgear XR500
Update method: Tftpd64
File/Kernel: factory-to-ddwrt.img / Linux 4.9.337 #1603 SMP Tue Feb 28 02:30:55 +07 2023 armv7l
Previous/Reset: DumaOS / yes
Mode/Status: Gateway / Up and running for 3:48 hours
Issues/Errors: Nothing significant
________________________________________________________________________________________________
Router/Version: TP-Link WDR4900 V1
Update method: WebUpgrade
File/Kernel: tl-wdr4900-webflash.bin / Linux 4.4.302-st37 #3081 Tue Feb 28 01:50:15 +06 2023 ppc
Previous/Reset: r51855 / no
Mode/Status: Gateway / Up and running for 2:16 hours
Issues/Errors: Nothing significant

Thank you BS and gurus!

_________________
Atheros
Netgear XR500 Nighthawk - DD-WRT 54545
Tp-Link TL-WDR4900 v1.3 - DD-WRT 53133
TP-Link WR1043ND v4 - DD-WRT 51838
TP-Link WR1043ND v2 - Gargoyle OS 1.13.0
TP-Link WR841ND v11 - DD-WRT 55819
Broadcom
Asus RT-AC87U R - DD-WRT 55819
Asus RT-N66U - DD-WRT 55819
Linksys WRT54GL v1.1 - DD-WRT 54517M
Linksys WRT54GL v1.1 - FreshTomato 2023.4_MIPS_K26
Linksys WRT54GL v1.1 - Gargoyle OS 1.6.2
strange
DD-WRT User


Joined: 18 Jun 2006
Posts: 229

PostPosted: Fri Mar 03, 2023 3:18    Post subject: Reply with quote
Netgear XR500 – Gateway
Firmware Version: DD-WRT v3.0-r51887 std (02/28/23)
Kernel Version: Linux 4.9.337 #1603 SMP Tue Feb 28 02:30:55 +07 2023 armv7l
Wireless: Vanilla with Airtime Fairness enabled
Temperatures: CPU 52.403 °C / wlan0 55 °C / wlan1 60 °C
Current Time: Thu, 02 Mar 2023 19:14:58
Uptime: 2 days, 2:07
Reset: No
CL install over r51855
Running Services: Wireguard client, USB, NAS, mDNS/Avahi. SmartDNS

No issues

Thank you BS and gurus.

_________________
Netgear XR500 - Gateway
R6700 v3 - Station Bridge
thommy181
DD-WRT User


Joined: 16 Mar 2019
Posts: 353
Location: Szczecin, Poland EU

PostPosted: Fri Mar 03, 2023 19:04    Post subject: New Build - 02/28/2023 - r51887 Reply with quote
Router/Version: Tp-Link TL-WDR3600 v 1.5
Kernel: Linux 3.10.108-d11 #127390 Tue Feb 28 04:10:57 +06 2023 mips
Reset: Yes
Mode: Internet gateway, WIFI AP 5GHz, dnsmasq server, firewall
Errors: Device stop respond after put own configuration in Setup -> Switch config tab
Status: router won't respond

Device won't working after made own configuration in setup -> switch config tab. GUI, SSH, wire and internet connections are unavailable. After restart by button on case router have correct IP. Can't ping. It's "PING: transmit failed, general failure". I don't know what provoke problems. I'm back to r51589 build and all functions working good. That's last stable build for my router model.
kernel-panic69
DD-WRT Guru


Joined: 08 May 2018
Posts: 14246
Location: Texas, USA

PostPosted: Fri Mar 03, 2023 19:13    Post subject: Re: New Build - 02/28/2023 - r51887 Reply with quote
thommy181 wrote:
Device won't working after made own configuration in setup -> switch config tab. GUI, SSH, wire and internet connections are unavailable. After restart by button on case router have correct IP. Can't ping. It's "PING: transmit failed, general failure". I don't know what provoke problems. I'm back to r51589 build and all functions working good. That's last stable build for my router model.

Again, the switch config tab on your router DOES NOT WORK and HAS NEVER WORKED.

_________________
"Life is but a fleeting moment, a vapor that vanishes quickly; All is vanity"
Contribute To DD-WRT
Pogo - A minimal level of ability is expected and needed...
DD-WRT Releases 2023 (PolitePol)
DD-WRT Releases 2023 (RSS Everything)

----------------------
Linux User #377467 counter.li.org / linuxcounter.net
lfb
DD-WRT Novice


Joined: 13 Nov 2016
Posts: 16

PostPosted: Sat Mar 04, 2023 10:00    Post subject: Reply with quote
Update method: WebUpgrade
Router/Version: TP-Link Archer C7 v5
File/Kernel: DD-WRT v3.0-r51887 std (02/28/23)
Previous/Reset: DD-WRT v3.0-r51589 std (02/07/23) / No reset.
Mode/Status: WLAN 0 AP / inactive, WLAN 1 Station bridge (routed) / active, WLAN 1.1 AP (WDS) / active
Issues/Errors: Wireless 5G connection to primary AP doesn't work.

Site Survey shows APs and the needed AP and allows to connect, but disconnects after a few seconds / never getting a working connection, WLAN LED no activity. Downgraded to r51288 (01/12/23) working again.

[EDIT]
51935
, 51887, 51787, 51741, 51617 not working
51589, 51288 OK


Last edited by lfb on Sat Mar 04, 2023 12:51; edited 1 time in total
Alozaros
DD-WRT Guru


Joined: 16 Nov 2015
Posts: 6447
Location: UK, London, just across the river..

PostPosted: Sat Mar 04, 2023 10:35    Post subject: Reply with quote
there is a new build 51935...
_________________
Atheros
TP-Link WR740Nv1 ---DD-WRT 55630 WAP
TP-Link WR1043NDv2 -DD-WRT 55723 Gateway/DoT,Forced DNS,Ad-Block,Firewall,x4VLAN,VPN
TP-Link WR1043NDv2 -Gargoyle OS 1.15.x AP,DNS,QoS,Quotas
Qualcomm-Atheros
Netgear XR500 --DD-WRT 55779 Gateway/DoH,Forced DNS,AP Isolation,4VLAN,Ad-Block,Firewall,Vanilla
Netgear R7800 --DD-WRT 55819 Gateway/DoT,AD-Block,Forced DNS,AP&Net Isolation,x3VLAN,Firewall,Vanilla
Netgear R9000 --DD-WRT 55779 Gateway/DoT,AD-Block,AP Isolation,Firewall,Forced DNS,x2VLAN,Vanilla
Broadcom
Netgear R7000 --DD-WRT 55460 Gateway/SmartDNS/DoH,AD-Block,Firewall,Forced DNS,x3VLAN,VPN
NOT USING 5Ghz ANYWHERE
------------------------------------------------------
Stubby DNS over TLS I DNSCrypt v2 by mac913
Goto page Previous  1, 2, 3, 4  Next Display posts from previous:    Page 2 of 4
Post new topic   Reply to topic    DD-WRT Forum Index -> Atheros WiSOC based Hardware All times are GMT

Navigation

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum