# Offloader Konfiguration für Gluon
LAN Port mit VLANs aufteilen
- Ein VLAN für Client-Netz
- Mehrere VLANs für Isolierte Mesh-Segmente
Beispielhaft für einen NanoPi R2S
- WAN: eth0
- LAN: eth1
## Client tagged ausliefern
Benötigt
- [x] https://github.com/freifunk-gluon/gluon/pull/2472
merged 2022-04-17
### /etc/config/gluon
- Ungetaggtes Client-Netzwerk auf LAN deaktivieren
```diff
config interface 'iface_lan'
option name '/lan'
- list role 'client'
```
oder
```
uci delete gluon.iface_lan.role
```
- Neues getaggtes Client-Interface anlegen
z.B. VLAN 130
```uci
config interface 'iface_client'
option name 'eth1.130'
list role 'client'
```
## Isolierte Mesh-Segmente tagged ausliefern
Benötigt
- [x] https://github.com/freifunk-gluon/gluon/pull/2600
- in ffda 2.6.0 enthalten (merged 2022-10-18)
### /etc/config/gluon
- Neue Interface Konfiguration für jedes VLAN anlegen
z.B. VLAN 120
```uci
config interface 'iface_mesh_vlan120'
option name 'eth1.120'
list role 'mesh'
```