Skip to main content

RADIUS tools

Project description

https://github.com/pyradius/pyrad/actions/workflows/python-test.yml/badge.svg?branch=master https://coveralls.io/repos/github/pyradius/pyrad/badge.svg?branch=master https://img.shields.io/pypi/v/pyrad.svg https://img.shields.io/pypi/pyversions/pyrad.svg https://img.shields.io/pypi/dm/pyrad.svg Documentation Status https://img.shields.io/pypi/l/pyrad.svg https://img.shields.io/badge/Chat-darkgreen

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyrad-2.5.4.tar.gz (488.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pyrad-2.5.4-py3-none-any.whl (495.1 kB view details)

Uploaded Python 3

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

Hashes for pyrad-2.5.4.tar.gz
Algorithm Hash digest
SHA256 e039c48a026c988d49276bd7c75795f55e0e4c2788f7ddf09419ce0e191a154d
MD5 cd5a921584b7b2072a776c6fc84bdc77
BLAKE2b-256 5275b3e18567376dd4f6d0a9d4b283cf4b16dd31420815a9e52bdd0282280777

See more details on using hashes here.

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

Hashes for pyrad-2.5.4-py3-none-any.whl
Algorithm Hash digest
SHA256 2c75e8a5642df262071d631e4552e08d9d5bed0c62699d83c24105c4fbfc2cff
MD5 1b21e2fa99fe416ad23d42ea2d6ef44e
BLAKE2b-256 19545b0ded99e5a8390be3e5c29513b9f53c01e5741256b7f73a20c0c606f29d

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page