diff options
author | Sergey V. Lobanov <sergey@lobanov.in> | 2022-04-20 13:36:08 +0300 |
---|---|---|
committer | Sergey V. Lobanov <sergey@lobanov.in> | 2022-04-20 15:09:58 +0300 |
commit | 6f5f75e70ce10dd41c47af8a3b4b179813020d4c (patch) | |
tree | 54e023a5de810747b62b0fda8668986bbb88f991 /accel-pppd/radius/radius.c | |
parent | f027b16325a11c988b4224bb8648dec8c0af2f69 (diff) | |
download | accel-ppp-6f5f75e70ce10dd41c47af8a3b4b179813020d4c.tar.gz accel-ppp-6f5f75e70ce10dd41c47af8a3b4b179813020d4c.zip |
add switch to disable sending NAS-Port-Id
This patch introduces nas-port-id-in-req switch to disable sending
NAS-Port-Id attribute in radauth and radacct messages. New switch
might be useful if radius server cannot properly handle this
attrubite.
Signed-off-by: Sergey V. Lobanov <sergey@lobanov.in>
Diffstat (limited to 'accel-pppd/radius/radius.c')
-rw-r--r-- | accel-pppd/radius/radius.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/accel-pppd/radius/radius.c b/accel-pppd/radius/radius.c index e074b982..786faa56 100644 --- a/accel-pppd/radius/radius.c +++ b/accel-pppd/radius/radius.c @@ -42,6 +42,7 @@ char conf_dm_coa_bind_device[IFNAMSIZ]; unsigned int conf_dm_coa_bind_default; int conf_sid_in_auth; +int conf_nas_port_id_in_req = 1; int conf_require_nas_ident; int conf_acct_interim_interval; int conf_acct_interim_jitter; @@ -1070,6 +1071,10 @@ static int load_config(void) if (opt && atoi(opt) >= 0) conf_strip_realm = atoi(opt) > 0; + opt = conf_get_opt("radius", "nas-port-id-in-req"); + if (opt) + conf_nas_port_id_in_req = atoi(opt); + return 0; } |