migrado de rlm_rest a rlm_sql_postgress y rlm_sql
This commit is contained in:
@@ -17,8 +17,8 @@ server default {
|
||||
eap
|
||||
return
|
||||
}
|
||||
# MAC-Auth / Portal: Llama a la API REST para decidir y añadir atributos
|
||||
rest
|
||||
# Cargar atributos desde SQL (VLAN/bw, etc.)
|
||||
sql
|
||||
# Laboratorio: aceptar todo en flujos no EAP
|
||||
update control {
|
||||
Auth-Type := Accept
|
||||
@@ -35,12 +35,14 @@ server default {
|
||||
}
|
||||
|
||||
accounting {
|
||||
# Enviar eventos de accounting al dashboard (solo logging)
|
||||
rest
|
||||
ok
|
||||
}
|
||||
|
||||
post-auth {
|
||||
# Obtener atributos de VLAN/otros desde el API
|
||||
# Log de eventos post-auth al dashboard (no modifica la respuesta)
|
||||
rest.post-auth
|
||||
# Para EAP, los atributos del túnel interno se copian (use_tunneled_reply = yes)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,9 +6,21 @@ server inner-tunnel {
|
||||
}
|
||||
|
||||
authorize {
|
||||
# Obtener credenciales del usuario desde el API (debe devolver Cleartext-Password)
|
||||
rest_inner
|
||||
# Fallback/local: también consultar backend 'files' (user1/user2)
|
||||
# Cargar credenciales/atributos del usuario desde SQL
|
||||
sql
|
||||
# En caso de que el módulo SQL no haya poblado Cleartext-Password, obténlo vía xlat
|
||||
update control {
|
||||
Cleartext-Password := "%{sql:SELECT value FROM radcheck WHERE username='%{User-Name}' AND attribute='Cleartext-Password' ORDER BY id DESC LIMIT 1}"
|
||||
}
|
||||
# Cargar atributos de respuesta desde SQL (VLAN y ancho de banda) para PEAP (se copian al outer)
|
||||
update reply {
|
||||
Tunnel-Type := "%{sql:SELECT value FROM radreply WHERE username='%{User-Name}' AND attribute='Tunnel-Type' ORDER BY id DESC LIMIT 1}"
|
||||
Tunnel-Medium-Type := "%{sql:SELECT value FROM radreply WHERE username='%{User-Name}' AND attribute='Tunnel-Medium-Type' ORDER BY id DESC LIMIT 1}"
|
||||
Tunnel-Private-Group-Id := "%{sql:SELECT value FROM radreply WHERE username='%{User-Name}' AND attribute='Tunnel-Private-Group-Id' ORDER BY id DESC LIMIT 1}"
|
||||
WISPr-Bandwidth-Max-Down := "%{sql:SELECT value FROM radreply WHERE username='%{User-Name}' AND attribute='WISPr-Bandwidth-Max-Down' ORDER BY id DESC LIMIT 1}"
|
||||
WISPr-Bandwidth-Max-Up := "%{sql:SELECT value FROM radreply WHERE username='%{User-Name}' AND attribute='WISPr-Bandwidth-Max-Up' ORDER BY id DESC LIMIT 1}"
|
||||
}
|
||||
# Fallback/local: también consultar backend 'files'
|
||||
files
|
||||
# Procesar EAP (PEAP) y MS-CHAPv2
|
||||
eap
|
||||
@@ -23,6 +35,6 @@ server inner-tunnel {
|
||||
}
|
||||
|
||||
post-auth {
|
||||
# Nada aquí; el outer post-auth añadirá VLAN
|
||||
# Nada: los atributos se copian fuera si use_tunneled_reply = yes
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user