mirror of
https://github.com/ntop/ntopng.git
synced 2026-05-02 00:40:10 +00:00
Add RADIUS accounting pref in nEdge (ntopng.prefs.radius.accounting_enabled)
This commit is contained in:
parent
b7984470a3
commit
88e2b8b101
4 changed files with 41 additions and 13 deletions
|
|
@ -2043,6 +2043,7 @@ local known_parameters = {
|
|||
["toggle_influx_auth"] = validateBool,
|
||||
["toggle_ldap_auth"] = validateBool,
|
||||
["toggle_local_auth"] = validateBool,
|
||||
["toggle_radius_accounting"] = validateBool,
|
||||
["toggle_radius_auth"] = validateBool,
|
||||
["toggle_http_auth"] = validateBool,
|
||||
["toggle_ldap_referrals"] = validateBool,
|
||||
|
|
|
|||
|
|
@ -35,6 +35,10 @@ local menu_subpages = {
|
|||
title = i18n("prefs.toggle_ldap_auth"),
|
||||
description = i18n("prefs.toggle_ldap_auth_descr"),
|
||||
hidden = (not hasLdap),
|
||||
}, toggle_radius_accounting = {
|
||||
title = i18n("prefs.toggle_radius_accounting"),
|
||||
description = i18n("prefs.toggle_radius_accounting_descr", {product=info.product}),
|
||||
hidden = (not hasRadius or not have_nedge),
|
||||
}, toggle_radius_auth = {
|
||||
title = i18n("prefs.toggle_radius_auth"),
|
||||
description = i18n("prefs.toggle_radius_auth_descr", {product=info.product}),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue