7 Oct
2012
7 Oct
'12
11:34 p.m.
2012/10/6 Alan DeKok <aland@deployingradius.com>:
You can use the Perl RADIUS libraries to create a packet.
Or, use "Raw-Attribute" in FreeRADIUS. It puts data into a packet exactly as-is. It means that you do the work of creating a VSA with subattributes, and FreeRADIUS handles all of the signing, packet sending, etc.
e.g.:
bob Cleartext-Password := "bob" Raw-Attribute = 0x1a1200000001010612345678020612345678"
You'll have to create the contents of the VSA by hand.
Great tip, I think Raw-Attribute should do the work. Thanks!