Jan-Jonas Sämann
Jan-Jonas Sämann
> it's never desirable to stop the queue. Is exactly the issue I also face. Needing an admin to fix the backend after each paper-jam isn't exactly desirable if the...
I'am facing a similar issue ```python3 import radiusd def authorize(p): return ( radiusd.RLM_MODULE_OK, (("Tunnel-Type", "VLAN"), ("Tunnel-Medium-Type", "IEEE-802"), ("Tunnel-Private-Group-Id", "899"), ("Egress-VLANID", "822084384"), ("Egress-VLANID", "822084395"), ("Egress-VLANID", "822084404"), ("Egress-VLANID", "822084484"), ("Egress-VLANID", "822084574"), ("Egress-VLANID",...
Turns out at least in 3.2.7 it is possible with triple tupels like ```python3 import radiusd def authorize(p): return ( radiusd.RLM_MODULE_OK, {'reply': ( ("Tunnel-Type", "VLAN"), ("Tunnel-Medium-Type", "IEEE-802"), ("Tunnel-Private-Group-Id", "899"), ("Egress-VLANID",...