I'm having trouble getting WDS working between 2 kamikaze devices. I'd like to use my existing device (wrtsl54gs) as my gateway and "primary" AP, and extend the network using a newly purchased whr-hp-g54.
However, I can't seem to make this work. I've followed various bits of advice I've found on the forums to no avail. I've crafted the following config files, but I seem to be missing something.
Here is my configuration on the already-in-use linksys:
root@wrtsl54gs:/etc/config# cat wireless
config wifi-device wl0
option type broadcom
option channel '1'
# disable radio to prevent an open ap after reflashing:
option disabled '0'
config wifi-iface
option device wl0
option network 'lan'
option mode 'ap'
option ssid 'myssid'
option hidden '0'
option encryption 'psk'
option key 'mypsk'
config wifi-iface
option device 'wl0'
option network 'lan'
option mode 'wds'
option ssid 'wdsssid'
option hidden '0'
option encryption 'none'
option bssid '00:16:01:--:--:--'
And on the new box:
root@whrhpg54:/etc/config# cat wireless
config wifi-device wl0
option type broadcom
option channel '1'
# disable radio to prevent an open ap after reflashing:
option disabled '0'
config wifi-iface
option device 'wl0'
option network 'lan'
option mode 'ap'
option ssid 'myssid2'
option hidden '0'
option encryption 'psk'
option key 'mypsk'
config wifi-iface
option device 'wl0'
option mode 'wds'
option ssid 'wdsssid'
option hidden '0'
option encryption 'none'
option network 'lan'
option bssid '00:10:18:--:--:--'
Upon rebooting, the devices have 'wds0.1' interfaces, but show no traffic transmitted or received. The interfaces have (properly, I think) been automatically added to the br-lan bridges. Both devices are configured with the bridge interface on the same subnet. I have disabled the firewall and dnsmasq on the secondary device. As recommended, I have not enabled WPA on the wds devices, although I do have it enabled on the AP itself.
Now, my understanding is that I should not have to do any additional configuration - at this point I should be able to ping between the two boxes. However, I cannot. I would appreciate any advice that would point me in the right direction.