Process of elimination: 1) Move the MAP node to another channel (while staying in band for our licensing). To have clear freq separation move up to ch 11 under part 15 normal wifi licensing and revert back to factory linksys image. (Shouldn't have any effect in your test given there's no mesh RF traffic in your setup to compete, but for expanded use...) 2) The linksys are flaky with combined usage of ports for both DtD and devices that can be plugged into any given LAN port. Since Linksys factory images don't combine vlan tags on the same external port, we can't be assured this will ever work robustly. To eliminate this as a problem, you can edit a couple of files (you or friend know ssh and vi?): Find these configuration files and edit the sections to look like (or similiar to this). Different versions of linksys have different port mappings (and becareful as some have internal port 1 labeled as port 4 external). Openwrt website gives the details. This example turns port '1' internal to be the DtD only port. vlan2 (or tag 2) is for DtD. The "option auto no" line is commented out and is only a change to do in the recently uploaded 3.0.0 image to turn DtD on. /etc/vlan ---------------------------------- config switch eth0 option vlan0 "2 3 4 5*" option vlan1 "0 5" option vlan2 "1t 5t" --------------------------------------- /etc/config.mesh/network --------------------------------------- config interaface dtdlink option ifname "eth0.2" option proto static option ipaddr <ditdlink_ip> option netmask 255.0.0.0 # option auto no --------------------------------------------- ************ in setup, save settings and reboot **************** 3) install 'wireshark' on the laptop and capture the packets to get an idea of the traffic. Everything is going from correct source to destination IP addresses between all the nodes? Nothing looks unusual?
|