mistermoonlight1
Occasional Visitor
@r80xcoreFirst i have some questions:
Did you get an "unsupported" popup when reloading in 0.52.5?
The new feature affecting you makes easier to track these kind of bugs from now on. The ui bug should be fixed now and this is probably a profile problem.
You can test this easily. (in 0.52.5)
Run
Code:nano /tmp/var/wwwext/mervlan/settings/settings.json
Scroll down to the hardware section.
First check if it says:
"PRODUCTID": "Unsupported"
Then test to change MAX LAN to something else, like 8.
Press ctrl+x, y, then enter to save.
Then reload the UI and see if this changes the amount of ports.
If so, this is only that the model wasnt loaded and an easy fix.
Also, everytime you update the addon a backup is made. You can access and restore these by either running:
These two commands:
Or this command:Code:cd /jffs/addons/mervlan/functions ./update_mervlan restore
Make sure to include the ( ) if you use the oneliner.Code:(sh /jffs/addons/mervlan/functions/update_mervlan.sh restore)
Just follow the instructions and choose one of up to three saved backups.
Hi!
Good guess, effectively, i attempted an update from my franken v0.52.4 from the gui and get back to v0.52.5.
As you guessed, there was someting wrong in the hardware detection:
Code:
"Hardware": {
"_description": "Detected hardware profile (auto-generated by hw_probe.sh; do not edit)",
"MODEL": "UNSUPPORTED",
"PRODUCTID": "RT-AC86U",
"MAX_SSIDS": "3",
"RADIOS": ["2.4", "5g-1"],
"GUEST_SLOTS": "3",
"ETH_PORTS": ["eth1", "eth2", "eth3"],
"LAN_PORT_LABELS": ["LAN1", "LAN2", "LAN3"],
"WAN_IF": "eth0",
"MAX_ETH_PORTS": "3"
}
This effectively makes the gui having just 3 ssids and 3 lan ports
Previously with v0.52.4, i had someting like this:
Code:
"Hardware": {
"_description": "Detected hardware profile (auto-generated by hw_probe.sh; do not edit)",
"MODEL": "AC86U",
"PRODUCTID": "RT-AC86U",
"MAX_SSIDS": "8",
"RADIOS": ["2.4", "5g-1"],
"GUEST_SLOTS": "3",
"ETH_PORTS": ["eth4", "eth3", "eth2", "eth1"],
"LAN_PORT_LABELS": ["LAN1", "LAN2", "LAN3", "LAN4"],
"WAN_IF": "eth0",
"MAX_ETH_PORTS": "4"
}
It looks like v0.52.5 cannot detect my router correctly anymore, like the previous version can...
I have just manually edited the hardware version with what was detected in previous version and after a reboot, the patched v0.52.5 now displays everything correctly.
It looks basically that it works, but v0.52.5 has some additionnal glitches i didn't get with v0.52.4 (at least maybe i need to "torture" v0.52.4 more). The timing with the save/apply vlan operations is much slowlier now than before (guessing of multiple ap support, but i am only editing in the 1st one single acces point setup). And sometimes there seems to have 2 page refresh after and operation which could be very delayed from each others. I got things like the vlan for a lan port was 222, just changed it to 333, save it. Waits a while for the refresh, apply the vlan. Did not change, and a refresh later, the gui revert to the previous vlan port by itself 222. (and brctl show previous vlan config) So i still think v0.52.4 is more stable. But i will continue testing the previous version to make sure that was not a coincidence...
FYI: i never got any unsupported popup at all (at least i did not see it if it was there)...