MS-CHAP

Alan DeKok aland at deployingradius.com
Wed Oct 5 15:15:18 UTC 2022


On Oct 5, 2022, at 9:54 AM, Fabricio Viana <fabricioviana at 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.



More information about the Freeradius-Users mailing list