Linuxmce is not officialy supporting wireless now, i mean you cannot setup the wireless params from somewhere withing linuxmce. This doesn't mean that it ain't going to work with your wireless card but some tweaking is involved for now. You need to modify a DeviceData entry for your core
1) First step, see what is the current value:
echo "SELECT IK_DeviceData from Device_DeviceData WHERE FK_DeviceData = 32 AND FK_Device=1" | mysql pluto_main;
This will show you your current network options. The devicedata 32 (network settings) for device 1 (core). Try to make a note so you can revert if something works wrong. For me is something like this now:
eth0,192.168.141.18,255.255.255.0,192.168.141.1,192.168.12.238|eth0:0,192.168.80.1,255.255.255.0
2) Change _first_ 'ethX' entry (eth0) in my case, with the device name of your wireless card (probably ra0/wlan0 or something similar). If you had only one network card as i do in my example i recommend to use the wired one as your external interface and not do an alias on the wireless one since the wired one is faster for pxe booting other computers or sharing data via nfs/samba. This means you want to change 'eth0:0' to eth0, or if you decide to use only the wireless card, change eth0:0 with wlan0:0 (or what is applyable in you hardware).
UPDATE Device_DeviceData SET IK_DeviceData = '$NewValue' WHERE FK_Device=1 AND FK_DeviceData = 32
where $NewValue is the modified string, for example in my case:
NewValue="wlan0,192.168.141.18,255.255.255.0,192.168.141.1,192.168.12.238|eth0,192.168.80.1,255.255.255.0"
or
NewValue="wlan0,192.168.141.18,255.255.255.0,192.168.141.1,192.168.12.238|wlan0:0,192.168.80.1,255.255.255.0"
Of course you can do any combination, you only need to know the the first device is the external one and the second the internal one
3) Run /usr/pluto/bin/Network_Setup.sh to apply your changes
PS: This guide assumes that you configure your wireless setting for the wireless card by hand
PS2: If anything goes wrong you can go set your device data to the original state and run Network_Setup.sh again