...
Using MySQL as user database backend
- Optionally: forcing outer identity to anonymous@domain.tld.
- A loopback client is useful for running testing scripts and even mandatory for tunnelled authentication methods like TTLS and PEAP, so we make sure it is set correctly. The localhost's secret does not need to be shared with anyone, it is just there proforma and can even be left at the default „testing123" An example can be downloaded from http://www.eduroam.org/downloads/docs/eduroam-cookbook-scripts.zip.
- As of version 2, FreeRADIUS is capable of both IPv4 and IPv6. The following four sections enable both
authentication and accounting processing with IPv4 and IPv6:
Code Block |
---|
listen {
type = auth
ipaddr = *
port = 1812
}
listen {
type = auth
ipv6addr = ::
port = 1812
}
listen {
type = acct
ipaddr = *
port = 1813
}
listen {
type = acct
ipv6addr = ::
port = 1813
}
|
- The remaining parts in the virtual server, like
Code Block |
---|
if (...) {
update request {
}
}
|
are not separate modules but a configuration language. Details about usage of this configuration language are available on its man page ("man unlang").Mandating or forbidding use of anonymous outer identity
More information
Eduroam-in-a-box web configuration tool:http://eduroam.sourceforge.net