2

I am using the RADIUS protocol to for sending some values from client to server. I am using vendor specific value pairs, and defining our own types. But the value length for Vendor-specific data is 255 and our data length is crossing it. Can any one tell me how to incorporate data with length more than 255 bytes?

dsolimano
  • 1,290
  • 2
  • 14
  • 26
Vijay.J055
  • 31
  • 2

2 Answers2

3

If you have control of both sides, you can have create attributes such as:

Vendor1 = "data"
Vendor2 = "data continued"
Vendor3 = "End Of Data"

If you don't have control of the far side, go ask THAT vendor how they expect the data to get through. Of at least, post the device name here so someone who has worked with it can have a clue how to help you.

kmarsh
  • 3,103
  • 15
  • 22
1

You could store the CDR somewhere say in a webserver (maybe via using a RESTful interface) Then just reference the URL for that stored CDR data in the RADIUS request.

martyvis
  • 239
  • 1
  • 7