Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

preprocess 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. # -*- text -*-
  2. #
  3. # $Id: e00aa85a9bd924b3a79c034f6f5d4d7d9a98c208 $
  4. # Preprocess the incoming RADIUS request, before handing it off
  5. # to other modules.
  6. #
  7. # This module processes the 'huntgroups' and 'hints' files.
  8. # In addition, it re-writes some weird attributes created
  9. # by some NASes, and converts the attributes into a form which
  10. # is a little more standard.
  11. #
  12. preprocess {
  13. huntgroups = ${confdir}/huntgroups
  14. hints = ${confdir}/hints
  15. # This hack changes Ascend's wierd port numberings
  16. # to standard 0-??? port numbers so that the "+" works
  17. # for IP address assignments.
  18. with_ascend_hack = no
  19. ascend_channels_per_line = 23
  20. # Windows NT machines often authenticate themselves as
  21. # NT_DOMAIN\username
  22. #
  23. # If this is set to 'yes', then the NT_DOMAIN portion
  24. # of the user-name is silently discarded.
  25. #
  26. # This configuration entry SHOULD NOT be used.
  27. # See the "realms" module for a better way to handle
  28. # NT domains.
  29. with_ntdomain_hack = no
  30. # Specialix Jetstream 8500 24 port access server.
  31. #
  32. # If the user name is 10 characters or longer, a "/"
  33. # and the excess characters after the 10th are
  34. # appended to the user name.
  35. #
  36. # If you're not running that NAS, you don't need
  37. # this hack.
  38. with_specialix_jetstream_hack = no
  39. # Cisco (and Quintum in Cisco mode) sends it's VSA attributes
  40. # with the attribute name *again* in the string, like:
  41. #
  42. # H323-Attribute = "h323-attribute=value".
  43. #
  44. # If this configuration item is set to 'yes', then
  45. # the redundant data in the the attribute text is stripped
  46. # out. The result is:
  47. #
  48. # H323-Attribute = "value"
  49. #
  50. # If you're not running a Cisco or Quintum NAS, you don't
  51. # need this hack.
  52. with_cisco_vsa_hack = no
  53. }