dictionary.asn 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. # -*- text -*-
  2. # Copyright (C) 2015 The FreeRADIUS Server project and contributors
  3. ##############################################################################
  4. #
  5. # ASN Attributes.
  6. #
  7. # Taken from http://svn.asn.pl/misc/freeradius/dictionary.asn
  8. #
  9. # $Id: 97fc9f140da31dd0d6958c5133979dadc12815fd $
  10. #
  11. ##############################################################################
  12. VENDOR ASN 23782
  13. BEGIN-VENDOR ASN
  14. ## Server-side extensions
  15. # dynamic IP pool name
  16. ATTRIBUTE ASN-IP-Pool-Name 1 string
  17. ### 2-99: free ###
  18. ## limits
  19. ATTRIBUTE ASN-Kbps-Down 100 integer
  20. ATTRIBUTE ASN-Kbps-Down-Localmedia 112 integer
  21. ATTRIBUTE ASN-Kbps-Up 101 integer
  22. ATTRIBUTE ASN-Pps-Down 102 integer
  23. ATTRIBUTE ASN-Pps-Up 103 integer
  24. ATTRIBUTE ASN-TCP-Connlimit 104 integer
  25. ## firewall
  26. ATTRIBUTE ASN-Firewall-Available 110 integer
  27. VALUE ASN-Firewall-Available Yes 1
  28. VALUE ASN-Firewall-Available No 2
  29. ATTRIBUTE ASN-Firewall-State 105 integer
  30. VALUE ASN-Firewall-State Enabled 1
  31. VALUE ASN-Firewall-State Disabled 2
  32. ATTRIBUTE ASN-Firewall-Block-Ping 107 integer
  33. VALUE ASN-Firewall-Block-Ping Enabled 1
  34. VALUE ASN-Firewall-Block-Ping Disabled 2
  35. # hosts to allow "<tcp/udp/sctp> <host> <port1,port2,...>"
  36. ATTRIBUTE ASN-Firewall-Open 106 string
  37. ## QoS
  38. ATTRIBUTE ASN-QoS-Available 111 integer
  39. VALUE ASN-QoS-Available Yes 1
  40. VALUE ASN-QoS-Available No 2
  41. ATTRIBUTE ASN-QoS-State 108 integer
  42. VALUE ASN-QoS-State Enabled 1
  43. VALUE ASN-QoS-State Disabled 2
  44. # IP redirection, with optional randomness
  45. # "<tcp/udp/sctp> src/dst [<dsthost[/mask]>:]<port1,port2,...> <host>:<port> [<random%>]"
  46. # where src/dst decides whether to match source or destination ports
  47. # random is an integer number from 1 to 99, or null - no randomness
  48. ATTRIBUTE ASN-IP-Redirect 109 string
  49. ## web filtering
  50. # decides whether to deny or to allow only the specified web topics
  51. ATTRIBUTE ASN-Webfilter-Mode 113 integer
  52. VALUE ASN-Webfilter-Mode Deny 1
  53. VALUE ASN-Webfilter-Mode Allow 2
  54. # where to redirect blocked request
  55. # "[301:302]<new url>"
  56. # 301/302 - redirect permanently (301) or temporarily (302) (default 302)
  57. # <new url> - an URL address, with following possible substitutions:
  58. # %a - IP address of the client
  59. # %i - user ID (RFC931) or "unknown"
  60. # %n - domainname of the client or "unknown"
  61. # %p - REQUEST_URI, ie. the path and the optional
  62. # query string of %u, but note for convenience
  63. # without the leading "/".
  64. # %t - matched destination group or "unknown"
  65. # %u - requested URL
  66. # %% - single '%'
  67. #
  68. ATTRIBUTE ASN-Webfilter-Redirect 114 string
  69. # squidGuard destination group to match
  70. # destinations available by default: sglists-<tag> - tags:
  71. # ads adult audioandvideo banks blogs chatandforum finance freemail games
  72. # home jobsearch keylogger news onlineGames phishing proxies recreation
  73. # reference science searchengine
  74. ATTRIBUTE ASN-Webfilter-Destination 115 string
  75. # web domain to match (will match all subdomains, too)
  76. ATTRIBUTE ASN-Webfilter-Domain 116 string
  77. END-VENDOR ASN