RADIUS tools
Project description
Introduction
pyrad is an implementation of a RADIUS client/server as described in RFC2865. It takes care of all the details like building RADIUS packets, sending them and decoding responses.
Here is an example of doing a authentication request:
from pyrad.client import Client
from pyrad.dictionary import Dictionary
import pyrad.packet
srv = Client(
server="localhost",
secret=b"Kah3choteereethiejeimaeziecumi",
dict=Dictionary("dictionary"),
)
# create request
req = srv.CreateAuthPacket(
code=pyrad.packet.AccessRequest, User_Name="wichert", NAS_Identifier="localhost"
)
req["User-Password"] = req.PwCrypt("password")
# send request
reply = srv.SendPacket(req)
if reply.code == pyrad.packet.AccessAccept:
print("access accepted")
else:
print("access denied")
print("Attributes returned by server:")
for key, val in reply.items():
print(f"{key}: {val}")
Requirements & Installation
pyrad requires Python 3.8 or later
Installing is simple; pyrad uses the standard distutils system for installing Python modules:
python setup.py install
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyrad-2.5.4.tar.gz.
File metadata
- Download URL: pyrad-2.5.4.tar.gz
- Upload date:
- Size: 488.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e039c48a026c988d49276bd7c75795f55e0e4c2788f7ddf09419ce0e191a154d
|
|
| MD5 |
cd5a921584b7b2072a776c6fc84bdc77
|
|
| BLAKE2b-256 |
5275b3e18567376dd4f6d0a9d4b283cf4b16dd31420815a9e52bdd0282280777
|
File details
Details for the file pyrad-2.5.4-py3-none-any.whl.
File metadata
- Download URL: pyrad-2.5.4-py3-none-any.whl
- Upload date:
- Size: 495.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c75e8a5642df262071d631e4552e08d9d5bed0c62699d83c24105c4fbfc2cff
|
|
| MD5 |
1b21e2fa99fe416ad23d42ea2d6ef44e
|
|
| BLAKE2b-256 |
19545b0ded99e5a8390be3e5c29513b9f53c01e5741256b7f73a20c0c606f29d
|