Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Note

It is assumed here that you will modify the default server available in FreeRADIUS's sites. For tunneled requests, such as EAP, you must modify inner-tunnel instead inner-tunnel site as Moonshot will use EAP-TTLS, and set the default EAP type in the ttls section to gtc for PAP support.

  1. Insert into the bottom of the authorize section after the pap line the following:

    Code Block
    languagebash
    if (User-Password) {
    	update control {
    		Auth-Type := ldap
    	}
    }
  2. In the authenticate section, modify the Auth-Type PAP option as shown below:

    Code Block
    languagebash
    Auth-Type PAP {
    	# pap
    	ldap
    }
  3. Additionally, remove the comment from the ldap line in the Auth-Type LDAP block, but not the block itself.
  4. Save the file.

...