While you can create a mesh network with openwrt, it's not the same as the one that TP-Link uses. So if you flash the V2s then the V3s will become useless since there currently is no openwrt for the V3.
If you really want to go with openwrt then I'd probably try and sell the V3s and buy used V1s, V2s or V4s.
But you might want to test the mesh network with your V2s before you commit to anything. The wifi drivers for the V1 and V2 aren't the greatest (and that won't change) and thus you can't create an access point network and a mesh network on the same radio at the same time without the link quality going down the drain. So you have to commit either the 2,4GHz or the 5GHz radio to the mesh network and only use the other radio for the access points. At least that was the case last time I tried it.
And just to prevent confusion since everybody has a different opinion about what a mesh network is: The mesh network is there for communication between the openwrt devices. Every one of those still needs an access point for end devices like smartphones or laptops. The mesh network basically only replaces a wired backhaul.
Of course if you can connect all of the openwrt devices with Ethernet cables then that works fine and has 2.4GHz and 5GHz access points available. My whole network is set up like that. But in that case you're not using the mesh functionality anymore.
And no, seamless roaming between access points is not equivalent to a mesh.
If you want the actual mesh backhaul to work then either all are using the stock firmware or openwrt.
But you don't need Decos for openwrt's mesh. Any openwrt device will do.
The Archer C6 V2 for example has the same hardware inside as the Deco M4R V2 but has actual antennas and a lot more switch ports exposed. And it's cheaper if you can find one on ebay.
Just to be sure, mesh is the technology in which how routers communicate with each other and roaming is a protocol that allows mobile devices to seamlessly transition between said routers, correct? And also from what I understand, if I was able to do a wired backhaul instead of the wireless mesh I would be able to make a single SSID that works both for 2.4 and 5 GHz, right?
Roaming isn't a protocol. Your smartphone simply chooses the access point with the strongest signal from the ones available with the same SSID.
There are protocols like 802.11r that help with the switch, but at the end of the day it's always up to the wifi client how it switches between access points.
Thanks! Will try to use a wired backhaul to make it as similar as possible to the original firmware. I have activated 802.11r before on the factory firmware but it seemed to have caused stability issues, will try it on OpenWRT as well but I am not super optimistic.
@caeklol I wanted to build it myself but the menu kind of scares me
Do you have a config or perhaps have the already build image so I can flash the device and test?
currently the process to install openwrt on the v3 is as follows:
obtain root shell on the device by uploading a fake firmware image which exploits the stock fw upgrade page at 192.168.68.1. this is naf's exploit
install bootloader mod to make the system bootable when our version of openwrt is installed. (there are some weird reasons why we need this in the first place)
flash openwrt via flashcp
i'm still finding a usable version of flashcp for the deco so ive been using a patch to the fw upgrade page that @naf419 and i formulated while testing but im not willing to give that currently as it may be... let's say unpredictable
if you'd like to test something it can be the bootloader mod!
you'll need to run the above exploit by naf (there should be usage instructions), then upload that to the deco's firmware upgrade page (192.168.68.1), then ssh into the deco (pass: letmeinbrudipls)
you can then run this shell script to check if the bootloader partition is as expected for the mod:
Upload the exploit via the devices firmware upgrade page. The IP address will vary depending on your deco. Norhing notable will happen, it will just upload the file and all will continue and it will look it succeeded but nothing special is visible.
Now SSH into the devices IP using port 2222, username 'root', password 'letmeinbrudipls'
great! in that case, you can test the mod at your own risk
to generate the patched bootloader:
#!/bin/sh
echo "copying mtd8 to tmp"
dd if=/dev/mtd8 of=/tmp/mtd8.bin
echo "patching /tmp/mtd8.bin"
printf '\xcc\xb2' | dd of=/tmp/mtd8.bin bs=1 seek=70584 conv=notrunc # adjust length for later modifications
printf 'Really scrub this NAND flash? <y/N>\x0a\x00\x00\x00\x00sf probe &&sf read 0x84000000 0x1020000 0xfe0000 && \x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00' | dd of=/tmp/mtd8.bin bs=1 seek=443320 conv=notrunc # hardcode loaded address to 0x84000000
echo "patched bootloader is at /tmp/mtd8.bin"
for safety, you can verify flash contents by extracting the modded bootloader (/tmp/mtd8.bin) via tftp (set up a tftp server, then use built-in tftp to put the file onto the tftp server) then uploading that here for verification
...
or if you like risk, you can just write the file to flash without verifying contents (dangerous and irreversible) and hope for the best:
the bootloader mod shouldn't do anything by itself, you should be able to boot the regular firmware like normal but it will allow you to boot openwrt later on once i find a comfortable method to use to flash the firmware with
apologies for my phrasing! if you have any questions feel free to ask
strange, i can't reproduce this. how might i ask is the script being run? is it just pasted to console via ssh?
if so, maybe try pressing enter after you paste? some consoles miss running a line after pasting