Skip to content

Instantly share code, notes, and snippets.

@colstrom
Created May 27, 2019 19:00
Show Gist options
  • Save colstrom/0decaf65a86ce99f8cabed8e24d50394 to your computer and use it in GitHub Desktop.
Save colstrom/0decaf65a86ce99f8cabed8e24d50394 to your computer and use it in GitHub Desktop.
Minimal FreeRADIUS Configuration
testuser Cleartext-Password := "testpassword"
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