About 12 results
Open links in new tab
  1. pyrad – RADIUS for Python — pyrad 2.1 documentation - Read …

    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:

  2. pyrad.server – basic server — pyrad 2.1 documentation - Read the …

    This class implements the basics of a RADIUS server. It takes care of the details of receiving and decoding requests; processing of the requests should be done by overloading the appropriate methods in derived classes.

  3. pyrad.client – basic client — pyrad 2.1 documentation - Read the …

    Basic RADIUS client. This class implements a basic RADIUS client. It can send requests to a RADIUS server, taking care of timeouts and retries, and validate its replies.

  4. 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.

  5. pyrad.host — pyrad 2.1 documentation - Read the Docs

    This utility function creates a new accouting RADIUS packet which can be used to communicate with the RADIUS server this client talks to. This is initializing the new packet with the dictionary and secret used for the client. :return: a new empty packet instance :rtype: pyrad.packet.AcctPacket """ return packet .

  6. pyrad.client — pyrad 2.1 documentation - Read the Docs

    This utility function creates a new RADIUS packet which can be used to communicate with the RADIUS server this client talks to. This is initializing the new packet with the dictionary and secret used for the client. :return: a new empty packet instance …

  7. pyrad.packet – packet encoding and decoding — pyrad 2.1 …

    Create a ready-to-transmit authentication request packet. Return a RADIUS packet which can be directly transmitted to a RADIUS server.

  8. pyrad.dictionary – RADIUS dictionary — pyrad 2.1 documentation

    Reads a RADIUS dictionary file and merges its contents into the class instance. Parameters: file ( string or file-like object ) – Name of dictionary file to parse or a file-like object

  9. Search — pyrad 2.1 documentation - Read the Docs

    pyrad.client – basic client; pyrad.dictionary – RADIUS dictionary; pyrad.host – RADIUS host definition; pyrad.packet – packet encoding and decoding; pyrad.proxy – basic proxy; pyrad.server – basic server

  10. pyrad.server — pyrad 2.1 documentation - Read the Docs

    This method is the main loop for a RADIUS server. It waits for packets to arrive via the network and calls other methods to process them. """ self . _poll = select . poll () self . _fdmap = {} self . _PrepareSockets () while True : for ( fd , event ) in self . _poll . poll (): if event == select .

Refresh