If I remember correctly authenticating against rest happens in the authorize section and for sql auth-type should be PAP. Looks like your auth-type is set to eap. Make sure you read all of https://django-freeradius.readthedocs.io/en/latest/general/freeradius.html#configuring-freeradius-3.
Found Auth-Type = eap On Fri, Nov 16, 2018 at 4:33 PM Marty Plummer <[email protected]> wrote: > > git clone https://bitbucket.org/hanetzer/radius.git > cd radius && docker-compose up --build > > You'll need a .env file, looks like this: > > DATABASE_URL=db://postgres:changeme@db/postgres // not yet configurable > DJANGO_DEBUG=false // DEBUG = False in settings.py > DJANGO_FREERADIUS_API_TOKEN=bigsecrettoken > DJANGO_MANAGEPY_COLLECTSTATIC=off > DJANGO_MANAGEPY_MAKEMIGRATIONS=on > DJANGO_MANAGEPY_MIGRATE=on > DJANGO_SETTINGS_MODULE=radius.settings > POSTGRES_DB=postgres // not yet configurable > POSTGRES_PASSWORD=changeme // not yet configurable > POSTGRES_USER=postgres //not yet configurable > SECRET_KEY=normaldjangosecretkey > FREERADIUS_SECRET=testing123 > > -- > You received this message because you are subscribed to the Google Groups > "OpenWISP" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. -- You received this message because you are subscribed to the Google Groups "OpenWISP" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
