feat: add FreeRADIUS EAP module configuration and container entrypoint script for dynamic service orchestration
Build and Push Docker Image to Gitea Container Registry / build-and-push (push) Successful in 3m17s

This commit is contained in:
Tygozwolle
2026-07-24 15:18:22 +02:00
parent 9a6b1131b1
commit 1054dfb61a
2 changed files with 27 additions and 23 deletions
+23 -21
View File
@@ -5,27 +5,7 @@ eap {
cisco_accounting_username_bug = no
max_sessions = ${max_requests}
# PEAP Configuration
peap {
default_eap_type = mschapv2
copy_request_to_tunnel = yes
use_tunneled_reply = yes
virtual_server = "inner-tunnel"
}
# TTLS Configuration
ttls {
default_eap_type = mschapv2
copy_request_to_tunnel = yes
use_tunneled_reply = yes
virtual_server = "inner-tunnel"
}
# MSCHAPv2 Configuration
mschapv2 {
}
# TLS Configuration for PEAP / TTLS
# TLS configuration section named "certs"
tls-config certs {
private_key_password = whatever
private_key_file = ${certdir}/server.pem
@@ -37,4 +17,26 @@ eap {
tls_min_version = "1.0"
tls_max_version = "1.2"
}
# PEAP configuration referencing tls-config certs
peap {
tls = certs
default_eap_type = mschapv2
copy_request_to_tunnel = yes
use_tunneled_reply = yes
virtual_server = "inner-tunnel"
}
# TTLS configuration referencing tls-config certs
ttls {
tls = certs
default_eap_type = mschapv2
copy_request_to_tunnel = yes
use_tunneled_reply = yes
virtual_server = "inner-tunnel"
}
# MSCHAPv2 configuration
mschapv2 {
}
}