The next goal was the Konfiguration of two „virtual“ WLANs on one physical router ; one private and protected WLAN and one open for Guests ( otherwise protected )
The Code is very simple :
config wifi-iface
        option device   radio0
        option network  lan
        option mode     ap
        option ssid     Secret-WLAN
        option encryption psk
        option key        Secret
        option hidden        1
config wifi-iface
        option device   radio0
        option network  lan2
        option mode     ap
        option ssid     OpenWLAN
        option encryption none
        option hidden   1
At last , you need a virutal ethernetdevice as bridiging point for the Second WLAN
config interface lan2
        option ifname   eth0.2
        option type     bridge
        option proto    static
        option ipaddr   172.27.1.1
        option netmask  255.255.255.0
[/lang_en]
[lang_de]

Der nächste Schritt war die Konfiguration zweier virtueller WLANs auf einem physikalischen  Accesspoint ; ein geschützes für private Zwecke und ein offenes für Gäste ( auf anderem Weg geschützt) 
Die Konfiguration ist sehr einfach:
config wifi-iface
        option device   radio0
        option network  lan
        option mode     ap
        option ssid     Secret-WLAN
        option encryption psk
        option key        Secret
        option hidden        1
config wifi-iface
        option device   radio0
        option network  lan2
        option mode     ap
        option ssid     OpenWLAN
        option encryption none
        option hidden   1
man braucht jetzt nur noch eine virtuelles Ethernet Device für die Bridge
config interface lan2
        option ifname   eth0.2
        option type     bridge
        option proto    static
        option ipaddr   172.27.1.1
        option netmask  255.255.255.0
[/lang_de]

