0

I'm attempting to make some authorization logic by unlang in the the post-auth section of my FreeRadius server. I'm wondering if there is a way to show all the attributes I could access in my unlang code?

jayatubi
  • 113
  • 1
  • 6

1 Answers1

1

There are default policies included in the server (versions >= 3.x.x) to do just that.

post-auth {
    debug_all
    ...
}

Should do what you need.

Arran Cudbard-Bell
  • 1,514
  • 1
  • 9
  • 18