pyrad icon indicating copy to clipboard operation
pyrad copied to clipboard

Python RADIUS Implementation

Results 90 pyrad issues
Sort by recently updated
recently updated
newest added

When creating a packet with the `result["Key:Tag"] = value` syntax, the same key with multiple tags results in only the last value being set. For instance, ``` result["Tunnel-Password:1"] = b"foo"...

Hello, I ask for forgiveness ahead of time. I'm a python newbie. I installed pyrad via: pip install pyrad I'm getting this when I run the example (with server/server info...

support

I often stumble upon radius replies bigger than 4096, and often prefer fast replies with subsecond timeouts. Subsecond timeouts already work, but documentation says that the timeout parameter is integer....

Does pyrad support tagged attributes? If yes, can somebody please share example how to use / parse them? I'm working on client application and RADIUS server is replying with several...

enhancement

Hi dears, I am doing my project for authentications. I do implement two python scripts for pyrad RADIUS Server and Clints. Both are run, the message sent from the client,...

support

Version 2.2 https://github.com/pyradius/pyrad/blob/master/pyrad/server_async.py#L61 Is the `.secret` suppose to be here? It causes the below exception if you add 0.0.0.0 to the Clients in the configuration json. ``` server_async.py", line 80,...

Bug in 2.2 : no problem in 2.1 Traceback (most recent call last): File "/app/uti/project/views.py", line 81, in do_admin_login reply = srv.SendPacket(req) File "/app/venv-3.6/lib/python3.6/site-packages/pyrad/client.py", line 180, in SendPacket return self._SendPacket(pkt,...

fixed
feedback

I am trying to send TLV Attributes in Accounting Packets. I have defined the Dictionary file with the TLV attributes in the below format. ATTRIBUTE Vendor-TLV 5 tlv ATTRIBUTE Vendor-TLV-Attribute1...

I have a working server written for Linux machines that performs the functionality I require (authentication requests only). I, unfortunately, also need it to function on Windows machines, and I...

Raises exception (instead of a general KeyError) when attribute does not exist in dictionaries, so the error can be handled easily by the consumer (server implementation).