]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
radius: added config example for accounting
authorMichal Nowikowski <godfryd@isc.org>
Fri, 25 Jan 2019 08:39:17 +0000 (09:39 +0100)
committerMichal Nowikowski <godfryd@isc.org>
Tue, 29 Jan 2019 06:13:51 +0000 (01:13 -0500)
doc/guide/hooks-radius.xml

index 12e92ae7c39505cf738c2672a16a6c8b5f08c34d..8ede6f60ce4ea35cadfbb4c3e5b3acec6df2c22d 100644 (file)
@@ -540,7 +540,7 @@ Please make sure that your compilation has the following:
         "servers": [
         {
             // These are parameters for the first (and only) access server
-            "server": "127.0.0.1",
+            "name": "127.0.0.1",
             "port": 1812,
             "secret": "secret"
         }
@@ -576,9 +576,21 @@ Please make sure that your compilation has the following:
         ] // End of attributes
     } // End of access
 
-    // accounting could be specified here.
-
+    // Accounting parameters.
+    "accounting": {
+        // This starts the list of accounting servers
+        "servers": [
+        {
+            // These are parameters for the first (and only) accounting server
+            "name": "127.0.0.1",
+            "port": 1813,
+            "secret": "secret"
+        }
+        // Additional accounting servers could be specified here
+        ]
     }
+
+}
 </screen>
 </para>