5 Oct
2022
5 Oct
'22
11:15 a.m.
On Oct 5, 2022, at 9:54 AM, Fabricio Viana <fabricioviana@hotmail.com> wrote:
Hello! I need some help, please.
I need to reject a MSCHAP request based on request:Service-Type.
if (Server-Type == "foo") { reject } Do you want to reject *only* MS-CHAP requests which contain that service type? Read the debug output to see the attribute names used for MS-CHAP, and then use those names if (MS-CHAP-Challenge && (Service-Type == "foo")) { reject } Alan DeKok.