I'm confused now. Isn't this thread about VLANs and WLANs? If you don't have VLANs, the setup is quite simple. If you do have VLANs, you will need some sort of tunnelling mechanism (or, alternatively, you can modify the mac80211 implementation to send VLANs over the air, which I wouldn't recommend.)
If you don't have VLANs yet, but want to add them, the switch documentation will get you started. I highly recommend you get VLANs working first, as then you can do the bridging based on your setup (unless you choose option 3, no tunnelling, in which case the setup steps remain the same.)
Yes, it is possible (see @skids's links) . However, if you do this with the same radio, you will have to use the same channel for both your clients and for bridging, which could affect performance. I haven't looked into doing this (nor know if the C7 supports it), but 802.11s might help somehow. If you must bridge wirelessly, it may be wise to get a dedicated USB radio for the client part and using the internal radios for the AP parts.
The reason performance is hurt when you use the same radio is because you essentially halve the transmission rate (you need to split the bandwidth between the stations and the main AP.) If you use the same channel (or an overlapping one), you also introduce noise to the medium, as Wi-Fi synchronisation only works between an AP and its associated stations, but not across APs.)
If you are not using 802.1X (so called WPA-Enterprise or WPA2-Enterprise), and you have VLANs, each VLAN is a different SSID, and you don't have a lot of VLANs (I'd say, no more than 2-5), option 3 in my original response requires no tunnelling and still is the simplest to set up.
Adding to @joe_internet, how I would do tunnelling would be more or less:
tplink1
: Add a dedicated VLAN for bridging. Set up a tunnling protocol of your choice here.
tplink2
: Connect to dedicated bridging VLAN. Configure the tunnel client. Replicate the VLAN and SSID configuration in tplink1
using the tunnel.
- Enjoy your extended coverage.
I don't know what you're dealing with, and WLANs may very well be the sole option you have. However, if you have other sorts of wiring available, such as coaxial or electrical, there exist devices and protocols to use these to transmit ethernet traffic. (WiMAX can also do what you need, but it may be a case of over-engineering in this case.) What all these solutions have in common, including WLANs, is that performance is usually not great.
EDIT: About the USB radio suggestion: since the C7 has two radios, you could technically use one of the radios for connecting to tplink1
and the other one for stations. However, by doing this you forefeit using two bands for stations, which is disadvantageous (you'll most likely bridge over 2.4GHz, leaving 5GHz only for clients, which not all devices may support). I just wanted to point this out to explain my reasoning.