diff --git a/clients.conf-example b/clients.conf-example new file mode 100644 index 0000000000000000000000000000000000000000..e7157707046558a5bf830414e5d54e18a05ef997 --- /dev/null +++ b/clients.conf-example @@ -0,0 +1,9 @@ +#Here we list RADIUS clients that we are willing to serve +# +#First field is T or U for TLS or UDP +#Second is address or fqdn, and must match certificate cn for TLS +#Third field is the secret and is optional for TLS + +T 2001:db8::1 +U 127.0.0.1 secret +T radius.example.com verysecret diff --git a/radsecproxy.conf-example b/radsecproxy.conf-example new file mode 100644 index 0000000000000000000000000000000000000000..be3dc9584c39dedbbbebaae3c3075df8fc66e6d9 --- /dev/null +++ b/radsecproxy.conf-example @@ -0,0 +1,13 @@ +#All possible config options are listed below +# +# You must specify at least one of TLSCACertificateFile or TLSCACertificatePath +# for TLS to work. We always verify peer certificate (both client and server) +#TLSCACertificateFile /etc/cacerts/CA.pem +TLSCACertificatePath /etc/cacerts + +# You must specify the below for TLS, we will always present our certificate +TLSCertificateFile /etc/hostcertkey/host.example.com.pem +TLSCertificateKeyFile /etc/hostcertkey/host.example.com.key.pem + +# You can optionally specify a non-standard UDP port to listen +#UDPServerPort 1814 diff --git a/servers.conf-example b/servers.conf-example new file mode 100644 index 0000000000000000000000000000000000000000..6556cb57b53a3b5dad8a33dda0d5c11e1e09bebf --- /dev/null +++ b/servers.conf-example @@ -0,0 +1,13 @@ +#Here we list RADIUS servers we will use for different realms +# +#First field is T or U for TLS or UDP +#Second is address or fqdn and optional port, must match certificate cn for TLS +# port is specified using addr:port or domain:port +#Third field is ";" separated list of realms +# * can be used for matching anything (default route) +# realms will be matched in the order specified, using first match +#Fourth field is the secret and is optional for TLS + +T [2001:db8::1]:2283 example.com;com +U 127.0.0.1 eduroam.cc secret +T radius.example.com * verysecret