From: nolade Date: Tue, 28 Jan 2025 17:00:19 +0000 (-0500) Subject: Update ldap auth file. Modified nav files and lots of xref stuff Resolved filepaths... X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f1adee6735f09dec035015c61d43a552b597540;p=thirdparty%2Ffreeradius-server.git Update ldap auth file. Modified nav files and lots of xref stuff Resolved filepaths for files in the reference and howto modules Update xrefs and fix broken links.Add file panic.gdb.adoc (found in src raddb panic.gdb) update ref nav file --- diff --git a/doc/antora/modules/ROOT/pages/faq.adoc b/doc/antora/modules/ROOT/pages/faq.adoc index a22f2401c86..ac6ee82b487 100644 --- a/doc/antora/modules/ROOT/pages/faq.adoc +++ b/doc/antora/modules/ROOT/pages/faq.adoc @@ -97,8 +97,7 @@ Then the server will always respond with the correct address. Yes, you can. Assuming you already have daemontools installed, configured and running in your system (see http://cr.yp.to/daemontools.html), you will have to make two decisions: 1. The log account and group name (_log.log_ is used in this example). Logging programs run under this _account.group_. If this _account.group pair_ does not exist yet, create it now. - -//2. The radiusd local service directory (_/etc/radiusd_ is used in this example). This is where radiusd will store logs and a few configuration files. +2. The radiusd local service directory (_/etc/radiusd_ is used in this example). This is where radiusd will store logs and a few configuration files. Then perform these steps: diff --git a/doc/antora/modules/reference/pages/raddb/sites-available/control-socket.rej.adoc b/doc/antora/modules/reference/pages/raddb/sites-available/control-socket.rej.adoc deleted file mode 100644 index d82e83d4811..00000000000 --- a/doc/antora/modules/reference/pages/raddb/sites-available/control-socket.rej.adoc +++ /dev/null @@ -1,44 +0,0 @@ -``` -*************** -*** 83,94 **** -``` - -uid:: Name of user who is allowed to connect to the control socket. - -``` -- # uid = radius - -``` - -gid:: Name of group that is allowed to connect to the control socket. - -``` -- # gid = radius - -``` - -Access mode. -``` ---- 83,94 ---- -``` - -uid:: Name of user who is allowed to connect to the control socket. - -``` -+ # uid = freerad - -``` - -gid:: Name of group that is allowed to connect to the control socket. - -``` -+ # gid = freerad - -``` - -Access mode. - -== Default Configuration - -``` -``` diff --git a/doc/antora/modules/reference/pages/raddb/sites-available/default.rej.adoc b/doc/antora/modules/reference/pages/raddb/sites-available/default.rej.adoc deleted file mode 100644 index 76bfb6c3f6f..00000000000 --- a/doc/antora/modules/reference/pages/raddb/sites-available/default.rej.adoc +++ /dev/null @@ -1,90 +0,0 @@ -``` -*************** -*** 86,91 **** - udp { - ipaddr = * - port = 1812 - } - } - ---- 86,92 ---- - udp { - ipaddr = * - port = 1812 -+ cleanup_delay = 30 - } - } - -*************** -*** 227,232 **** - expiration - logintime - -``` - -If no other module has claimed responsibility for -authentication, then try to use PAP. This allows the -``` ---- 228,237 ---- - expiration - logintime - -+ update control { -+ Cleartext-Password := "bob" -+ } -+ -``` - -If no other module has claimed responsibility for -authentication, then try to use PAP. This allows the -``` -*************** -*** 277,283 **** -``` -in the 'authorize' section supplies a password. The -password can be clear-text, or encrypted. -``` - authenticate pap { -- pap - } - -``` - -``` ---- 282,308 ---- -``` -in the 'authorize' section supplies a password. The -password can be clear-text, or encrypted. -``` - authenticate pap { -+ if (!Proxy-State) { -+ fork Access-Request { -+ radius { -+ fail = 1 -+ } -+ if (fail) { -+ update reply { -+ Packet-Type := Access-Accept -+ } -+ ok -+ } -+ } -+ -+ if (!fail) { -+ accept -+ } -+ } -+ else { -+ pap -+ # do_not_respond -+ } - } - -``` - - -== Default Configuration - -``` - -```