]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
add missing file
authorAlan T. DeKok <aland@freeradius.org>
Mon, 26 Apr 2021 23:57:48 +0000 (19:57 -0400)
committerAlan T. DeKok <aland@freeradius.org>
Mon, 26 Apr 2021 23:57:48 +0000 (19:57 -0400)
doc/antora/modules/raddb/pages/radclient.conf.adoc [new file with mode: 0644]

diff --git a/doc/antora/modules/raddb/pages/radclient.conf.adoc b/doc/antora/modules/raddb/pages/radclient.conf.adoc
new file mode 100644 (file)
index 0000000..55147f8
--- /dev/null
@@ -0,0 +1,85 @@
+
+
+
+
+= FreeRADIUS Client configuration file - 4.0.0
+
+
+Don't automatically add a Proxy-State
+
+
+
+
+
+
+Does nothing other than proxying.
+
+
+
+
+
+
+These cannot be proxied for now
+
+== Default Configuration
+
+```
+modules {
+radius {
+       type = Access-Request
+       type = Accounting-Request
+       type = CoA-Request
+       type = Disconnect-Request
+       originate = yes
+       transport = udp
+       udp {
+               ipaddr = $ENV{RADCLIENT_SERVER}
+               port = $ENV{RADCLIENT_PORT}
+               secret = $ENV{RADCLIENT_SECRET}
+       }
+       pool {
+               start = 1
+               min = 1
+               max = 1
+       }
+}
+}
+log {
+       colourise = yes
+}
+server default {
+       namespace = radius
+       listen {
+               type = Access-Request
+               type = Accounting-Request
+               type = CoA-Request
+               type = Disconnect-Request
+               type = Status-Server
+       }
+       recv Access-Request {
+               radius
+               if (ok) {
+                       update reply {
+                               &Packet-Type := Access-Accept
+                       }
+               }
+       }
+       send Access-Accept {
+       }
+       send Access-Reject {
+       }
+       recv Accounting-Request {
+               radius
+       }
+       send Accounting-Response {
+       }
+       recv CoA-Request {
+               radius
+       }
+       recv Disconnect-Request {
+               radius
+       }
+       recv Status-Server {
+       }
+}
+```