Created
May 27, 2019 19:00
-
-
Save colstrom/0decaf65a86ce99f8cabed8e24d50394 to your computer and use it in GitHub Desktop.
Minimal FreeRADIUS Configuration
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
client default { | |
ipaddr = "127.0.0.1" | |
secret = "testsecret" | |
} | |
modules { | |
files { | |
filename = "${confdir}/${.:instance}.authorize" | |
} | |
pap { | |
} | |
} | |
server default { | |
listen { | |
type = "auth" | |
ipv4addr = "127.0.0.1" | |
} | |
authenticate { | |
Auth-Type PAP { | |
pap | |
} | |
} | |
authorize { | |
files | |
pap | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment