datocp
2023-11-08 09:46:51 +08:00
这个也要看具体设备实现。之前我就搞不定当一个无线 mesh 出现在 2 个有线 mesh 设备中间时出现的回环情况,但是如果这个无线 mesh 是出现在边缘则没有问题。openwrt 常见解决方案是使用 STP 。
mesh 强调的是网状,和星形最大的区别,所谓的条条大路通过罗马。常见的解释就是有线 mesh 时,有线也通,无线也建立 mesh point ,内置的路由会择优选择出口有线。
所以 ABC ,C 如果能通过无线连接 AB ,那就让内置的系统自己判断。如果非要 BC ,根据 openwrt 的设定是通过 meshid 来设定的。也即无线 meshpoint 是通过配置同样的 meshid 来进行连接的。
config wifi-iface 'wmesh5'
option device 'radio0'
option ifname 'mesh5'
option network 'batnet5'
option mode 'mesh'
option mesh_id 'mesh'
option mesh_ttl '1'
option mesh_fwding '0'
option encryption 'none'
option mcast_rate '18000'
option mesh_rssi_threshold '-75'