Bug #3003
closedFreeeadius.xml bug
0%
Description
freeradius.xml line have a bug
<description><![CDATA[Enter the seconds which should be between every interim-update. It MUST be more than 60s and SHOULD NOT be less than 600s. (Default: 600)]]></description>
there is a logical error the value 60s bigger it is ok but if any value bigger than 60 never less than 600. 600 less is not possible.
i think that code is like
<description><![CDATA[Enter the seconds which should be between every interim-update. It MUST be more than 60s and SHOULD NOT be more than 600s. (Default: 600)]]></description>
Updated by Alexander Wilke over 11 years ago
http://www.ietf.org/rfc/rfc2869.txt
The Value field contains the number of seconds between each
interim update to be sent from the NAS for this session. The value
MUST NOT be smaller than 60. The value SHOULD NOT be smaller than
600, and careful consideration should be given to its impact on
network traffic.
It MUST NOT be smaller than 60s
and
it SHOULD BE at least 600s or longer
I do not see any mistake!?
Updated by Renato Botelho over 11 years ago
- Status changed from New to Rejected
There is no problems with the message
The value MUST NOT be < 60 and it SHOULD be >= 600.