From: Alan T. DeKok Date: Mon, 26 Apr 2021 23:57:48 +0000 (-0400) Subject: add missing file X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bced56a67b249688c8ef30d3855d0b55abb76763;p=thirdparty%2Ffreeradius-server.git add missing file --- diff --git a/doc/antora/modules/raddb/pages/radclient.conf.adoc b/doc/antora/modules/raddb/pages/radclient.conf.adoc new file mode 100644 index 00000000000..55147f8cbb5 --- /dev/null +++ b/doc/antora/modules/raddb/pages/radclient.conf.adoc @@ -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 { + } +} +```