Ceci est une ancienne révision du document !
Example configuration
The LAN is considered DHCP powered and the TP-Link is OpenWRT powered. This configuration is for two tagged VLANs for two SSIDs
<code> — 8< — /etc/config/network … config interface 'lan'
option ifname 'eth0'
option proto 'dhcp'
option hostname 'tp-link-coworkers'
config interface 'vlan101'
option type 'bridge'
option _orig_ifname 'eth0.101'
option _orig_bridge 'true'
option proto 'dhcp'
option ifname 'eth0.101'
config interface 'vlan102'
option type 'bridge'
option _orig_ifname 'eth0.102'
option _orig_bridge 'true'
option proto 'dhcp'
option ifname 'eth0.102'
… — >8 —