From: Michal Nowikowski Date: Fri, 25 Jan 2019 08:39:17 +0000 (+0100) Subject: radius: added config example for accounting X-Git-Tag: 429-Updated-StampedValue-to-support-reals_base~92 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c9743860a3dcf31526ffc53f62ae1463978a735c;p=thirdparty%2Fkea.git radius: added config example for accounting --- diff --git a/doc/guide/hooks-radius.xml b/doc/guide/hooks-radius.xml index 12e92ae7c3..8ede6f60ce 100644 --- a/doc/guide/hooks-radius.xml +++ b/doc/guide/hooks-radius.xml @@ -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 + ] } + +}