summaryrefslogtreecommitdiff
path: root/package/freeradius-server/patches/patch-share_dictionary
blob: 075c19c7157b4fb9a6e0f5a8634fdb137487cf4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
--- freeradius-server-2.1.7.orig/share/dictionary	2009-09-14 16:43:29.000000000 +0200
+++ freeradius-server-2.1.7/share/dictionary	2009-11-19 22:39:16.000000000 +0100
@@ -1,224 +1,224 @@
-# -*- text -*-
-#
-# Version $Id$
-#
-#	DO NOT EDIT THE FILES IN THIS DIRECTORY
-#
-#	The files in this directory are maintained and updated by
-#	the FreeRADIUS project.  Newer releases of software may update
-#	or change these files.
-#
-#	Use the main dictionary file (usually /etc/raddb/dictionary)
-#	for local system attributes and $INCLUDEs.
-#
-#
-#
-#	This file contains dictionary translations for parsing
-#	requests and generating responses.  All transactions are
-#	composed of Attribute/Value Pairs.  The value of each attribute
-#	is specified as one of 4 data types.  Valid data types are:
-#
-#	text       - printable, generally UTF-8 encoded (subset of 'string')
-#	string     - 0-253 octets
-#	ipaddr     - 4 octets in network byte order
-#	integer    - 32 bit value in big endian order (high byte first)
-#	date       - 32 bit value in big endian order - seconds since
-#		     00:00:00 GMT,  Jan.  1,  1970
-#	ifid       - 8 octets in network byte order
-#	ipv6addr   - 16 octets in network byte order
-#	ipv6prefix - 18 octets in network byte order
-#	ether      - 6 octets of hh:hh:hh:hh:hh:hh
-#		     where 'h' is hex digits, upper or lowercase.
-#
-#	FreeRADIUS includes extended data types which are not defined
-#	in the RFC's.  These data types are:
-#
-#	abinary - Ascend's binary filter format.
-#	octets  - raw octets, printed and input as hex strings.
-#		  e.g.: 0x123456789abcdef
-#
-#
-#	Enumerated values are stored in the user file with dictionary
-#	VALUE translations for easy administration.
-#
-#	Example:
-#
-#	ATTRIBUTE	  VALUE
-#	---------------   -----
-#	Framed-Protocol = PPP
-#	7		= 1	(integer encoding)
-#
-
-#
-#	Include compatibility dictionary for older users file. Move
-#	this directive to the end of this file if you want to see the
-#	old names in the logfiles, INSTEAD OF the new names.
-#
-$INCLUDE dictionary.compat
-
-#
-#	Include the RFC dictionaries next.
-#
-#	For a complete list of the standard attributes and values,
-#	see:
-#		http://www.iana.org/assignments/radius-types
-#
-$INCLUDE dictionary.rfc2865
-$INCLUDE dictionary.rfc2866
-$INCLUDE dictionary.rfc2867
-$INCLUDE dictionary.rfc2868
-$INCLUDE dictionary.rfc2869
-$INCLUDE dictionary.rfc3162
-$INCLUDE dictionary.rfc3576
-$INCLUDE dictionary.rfc3580
-$INCLUDE dictionary.rfc4072
-$INCLUDE dictionary.rfc4372
-$INCLUDE dictionary.rfc4675
-$INCLUDE dictionary.rfc4679
-$INCLUDE dictionary.rfc4818
-$INCLUDE dictionary.rfc4849
-$INCLUDE dictionary.rfc5176
-$INCLUDE dictionary.rfc5580
-
-#
-#	Include vendor dictionaries after the standard ones.
+## -*- text -*-
+##
+## Version $Id$
+##
+##	DO NOT EDIT THE FILES IN THIS DIRECTORY
+##
+##	The files in this directory are maintained and updated by
+##	the FreeRADIUS project.  Newer releases of software may update
+##	or change these files.
+##
+##	Use the main dictionary file (usually /etc/raddb/dictionary)
+##	for local system attributes and $INCLUDEs.
+##
+##
+##
+##	This file contains dictionary translations for parsing
+##	requests and generating responses.  All transactions are
+##	composed of Attribute/Value Pairs.  The value of each attribute
+##	is specified as one of 4 data types.  Valid data types are:
+##
+##	text       - printable, generally UTF-8 encoded (subset of 'string')
+##	string     - 0-253 octets
+##	ipaddr     - 4 octets in network byte order
+##	integer    - 32 bit value in big endian order (high byte first)
+##	date       - 32 bit value in big endian order - seconds since
+##		     00:00:00 GMT,  Jan.  1,  1970
+##	ifid       - 8 octets in network byte order
+##	ipv6addr   - 16 octets in network byte order
+##	ipv6prefix - 18 octets in network byte order
+##	ether      - 6 octets of hh:hh:hh:hh:hh:hh
+##		     where 'h' is hex digits, upper or lowercase.
+##
+##	FreeRADIUS includes extended data types which are not defined
+##	in the RFC's.  These data types are:
+##
+##	abinary - Ascend's binary filter format.
+##	octets  - raw octets, printed and input as hex strings.
+##		  e.g.: 0x123456789abcdef
+##
+##
+##	Enumerated values are stored in the user file with dictionary
+##	VALUE translations for easy administration.
+##
+##	Example:
+##
+##	ATTRIBUTE	  VALUE
+##	---------------   -----
+##	Framed-Protocol = PPP
+##	7		= 1	(integer encoding)
+##
 #
-$INCLUDE dictionary.3com
-$INCLUDE dictionary.3gpp
-$INCLUDE dictionary.3gpp2
-$INCLUDE dictionary.acc
-$INCLUDE dictionary.airespace
-$INCLUDE dictionary.alcatel
-$INCLUDE dictionary.alteon
-$INCLUDE dictionary.alvarion
-$INCLUDE dictionary.apc
-$INCLUDE dictionary.aruba
-$INCLUDE dictionary.azaire
-$INCLUDE dictionary.ascend
-$INCLUDE dictionary.bay
-$INCLUDE dictionary.bintec
-$INCLUDE dictionary.cablelabs
-$INCLUDE dictionary.cabletron
-$INCLUDE dictionary.chillispot
-$INCLUDE dictionary.cisco
+##
+##	Include compatibility dictionary for older users file. Move
+##	this directive to the end of this file if you want to see the
+##	old names in the logfiles, INSTEAD OF the new names.
+##
+##$INCLUDE dictionary.compat
 #
-#	 The Cisco VPN300 dictionary is the same as the altiga one.
-#	 You shouldn't use both at the same time.
+##
+##	Include the RFC dictionaries next.
+##
+##	For a complete list of the standard attributes and values,
+##	see:
+##		http://www.iana.org/assignments/radius-types
+##
+#$INCLUDE dictionary.rfc2865
+#$INCLUDE dictionary.rfc2866
+#$INCLUDE dictionary.rfc2867
+#$INCLUDE dictionary.rfc2868
+#$INCLUDE dictionary.rfc2869
+#$INCLUDE dictionary.rfc3162
+#$INCLUDE dictionary.rfc3576
+#$INCLUDE dictionary.rfc3580
+#$INCLUDE dictionary.rfc4072
+#$INCLUDE dictionary.rfc4372
+#$INCLUDE dictionary.rfc4675
+#$INCLUDE dictionary.rfc4679
+#$INCLUDE dictionary.rfc4818
+#$INCLUDE dictionary.rfc4849
+#$INCLUDE dictionary.rfc5176
+#$INCLUDE dictionary.rfc5580
 #
-#$INCLUDE dictionary.cisco.vpn3000
-$INCLUDE dictionary.cisco.vpn5000
-$INCLUDE dictionary.cisco.bbsm
-$INCLUDE dictionary.clavister
-$INCLUDE dictionary.colubris
-$INCLUDE dictionary.cosine
-#$INCLUDE dictionary.dhcp
-$INCLUDE dictionary.digium
-$INCLUDE dictionary.epygi
-$INCLUDE dictionary.erx
-$INCLUDE dictionary.ericsson
-$INCLUDE dictionary.extreme
+##
+##	Include vendor dictionaries after the standard ones.
+##
+#$INCLUDE dictionary.3com
+#$INCLUDE dictionary.3gpp
+#$INCLUDE dictionary.3gpp2
+#$INCLUDE dictionary.acc
+#$INCLUDE dictionary.airespace
+#$INCLUDE dictionary.alcatel
+#$INCLUDE dictionary.alteon
+#$INCLUDE dictionary.alvarion
+#$INCLUDE dictionary.apc
+#$INCLUDE dictionary.aruba
+#$INCLUDE dictionary.azaire
+#$INCLUDE dictionary.ascend
+#$INCLUDE dictionary.bay
+#$INCLUDE dictionary.bintec
+#$INCLUDE dictionary.cablelabs
+#$INCLUDE dictionary.cabletron
+#$INCLUDE dictionary.chillispot
+#$INCLUDE dictionary.cisco
+##
+##	 The Cisco VPN300 dictionary is the same as the altiga one.
+##	 You shouldn't use both at the same time.
+##
+##$INCLUDE dictionary.cisco.vpn3000
+#$INCLUDE dictionary.cisco.vpn5000
+#$INCLUDE dictionary.cisco.bbsm
+#$INCLUDE dictionary.clavister
+#$INCLUDE dictionary.colubris
+#$INCLUDE dictionary.cosine
+##$INCLUDE dictionary.dhcp
+#$INCLUDE dictionary.digium
+#$INCLUDE dictionary.epygi
+#$INCLUDE dictionary.erx
+#$INCLUDE dictionary.ericsson
+#$INCLUDE dictionary.extreme
 $INCLUDE dictionary.freeradius
-$INCLUDE dictionary.freeswitch
-$INCLUDE dictionary.fortinet
-$INCLUDE dictionary.foundry
-$INCLUDE dictionary.gandalf
-$INCLUDE dictionary.gemtek
-$INCLUDE dictionary.h3c
-$INCLUDE dictionary.hp
-$INCLUDE dictionary.huawei
-$INCLUDE dictionary.iea
-$INCLUDE dictionary.infonet
-$INCLUDE dictionary.issanni
-$INCLUDE dictionary.itk
-$INCLUDE dictionary.ipunplugged
-$INCLUDE dictionary.juniper
-$INCLUDE dictionary.jradius
-$INCLUDE dictionary.karlnet
-$INCLUDE dictionary.lancom
-$INCLUDE dictionary.livingston
-$INCLUDE dictionary.localweb
-$INCLUDE dictionary.lucent
-$INCLUDE dictionary.manzara
-$INCLUDE dictionary.merit
-$INCLUDE dictionary.microsoft
-$INCLUDE dictionary.mikrotik
-$INCLUDE dictionary.navini
-$INCLUDE dictionary.netscreen
-$INCLUDE dictionary.networkphysics
-$INCLUDE dictionary.nexans
-$INCLUDE dictionary.ntua
-$INCLUDE dictionary.nokia
-#
-#  Commented out because of attribute conflicts.
-#
-#$INCLUDE dictionary.nokia.conflict
-$INCLUDE dictionary.nomadix
-$INCLUDE dictionary.nortel
-#
-#  Commented out because of attribute conflicts.
+#$INCLUDE dictionary.freeswitch
+#$INCLUDE dictionary.fortinet
+#$INCLUDE dictionary.foundry
+#$INCLUDE dictionary.gandalf
+#$INCLUDE dictionary.gemtek
+#$INCLUDE dictionary.h3c
+#$INCLUDE dictionary.hp
+#$INCLUDE dictionary.huawei
+#$INCLUDE dictionary.iea
+#$INCLUDE dictionary.infonet
+#$INCLUDE dictionary.issanni
+#$INCLUDE dictionary.itk
+#$INCLUDE dictionary.ipunplugged
+#$INCLUDE dictionary.juniper
+#$INCLUDE dictionary.jradius
+#$INCLUDE dictionary.karlnet
+#$INCLUDE dictionary.lancom
+#$INCLUDE dictionary.livingston
+#$INCLUDE dictionary.localweb
+#$INCLUDE dictionary.lucent
+#$INCLUDE dictionary.manzara
+#$INCLUDE dictionary.merit
+#$INCLUDE dictionary.microsoft
+#$INCLUDE dictionary.mikrotik
+#$INCLUDE dictionary.navini
+#$INCLUDE dictionary.netscreen
+#$INCLUDE dictionary.networkphysics
+#$INCLUDE dictionary.nexans
+#$INCLUDE dictionary.ntua
+#$INCLUDE dictionary.nokia
+##
+##  Commented out because of attribute conflicts.
+##
+##$INCLUDE dictionary.nokia.conflict
+#$INCLUDE dictionary.nomadix
+#$INCLUDE dictionary.nortel
+##
+##  Commented out because of attribute conflicts.
+##
+##$INCLUDE dictionary.openser
+#$INCLUDE dictionary.packeteer
+#$INCLUDE dictionary.patton
+#$INCLUDE dictionary.propel
+#$INCLUDE dictionary.prosoft
+#$INCLUDE dictionary.quiconnect
+#$INCLUDE dictionary.quintum
+#$INCLUDE dictionary.redback
+#$INCLUDE dictionary.redcreek
+#$INCLUDE dictionary.riverstone
+#$INCLUDE dictionary.roaringpenguin
+#$INCLUDE dictionary.shasta
+#$INCLUDE dictionary.shiva
+#$INCLUDE dictionary.slipstream
+#$INCLUDE dictionary.sonicwall
+#$INCLUDE dictionary.springtide
+#$INCLUDE dictionary.starent
+#$INCLUDE dictionary.telebit
+#$INCLUDE dictionary.trapeze
+#$INCLUDE dictionary.tropos
+#$INCLUDE dictionary.t_systems_nova
+#$INCLUDE dictionary.usr
+#$INCLUDE dictionary.utstarcom
+#$INCLUDE dictionary.valemount
+#$INCLUDE dictionary.versanet
+#$INCLUDE dictionary.vqp
+#$INCLUDE dictionary.waverider
+#$INCLUDE dictionary.walabi
+#$INCLUDE dictionary.wimax
+#$INCLUDE dictionary.wispr
+#$INCLUDE dictionary.xedia
+#$INCLUDE dictionary.xylan
 #
-#$INCLUDE dictionary.openser
-$INCLUDE dictionary.packeteer
-$INCLUDE dictionary.patton
-$INCLUDE dictionary.propel
-$INCLUDE dictionary.prosoft
-$INCLUDE dictionary.quiconnect
-$INCLUDE dictionary.quintum
-$INCLUDE dictionary.redback
-$INCLUDE dictionary.redcreek
-$INCLUDE dictionary.riverstone
-$INCLUDE dictionary.roaringpenguin
-$INCLUDE dictionary.shasta
-$INCLUDE dictionary.shiva
-$INCLUDE dictionary.slipstream
-$INCLUDE dictionary.sonicwall
-$INCLUDE dictionary.springtide
-$INCLUDE dictionary.starent
-$INCLUDE dictionary.telebit
-$INCLUDE dictionary.trapeze
-$INCLUDE dictionary.tropos
-$INCLUDE dictionary.t_systems_nova
-$INCLUDE dictionary.usr
-$INCLUDE dictionary.utstarcom
-$INCLUDE dictionary.valemount
-$INCLUDE dictionary.versanet
-$INCLUDE dictionary.vqp
-$INCLUDE dictionary.waverider
-$INCLUDE dictionary.walabi
-$INCLUDE dictionary.wimax
-$INCLUDE dictionary.wispr
-$INCLUDE dictionary.xedia
-$INCLUDE dictionary.xylan
-
+##
+##	And finally the server internal attributes.
+##
+#$INCLUDE dictionary.freeradius.internal
 #
-#	And finally the server internal attributes.
+##
+##	Miscellaneous attributes defined in weird places that
+##	don't really belong anywhere else...
+##
+#ATTRIBUTE	Originating-Line-Info			94	string
 #
-$INCLUDE dictionary.freeradius.internal
-
+##  As defined in draft-sterman-aaa-sip-00.txt
+#ATTRIBUTE	Digest-Response				206	string
+#ATTRIBUTE	Digest-Attributes			207	octets	# stupid format
 #
-#	Miscellaneous attributes defined in weird places that
-#	don't really belong anywhere else...
+##
+##	Integer Translations
+##
+#VALUE	Service-Type			Voice			12
+#VALUE	Service-Type			Fax			13
+#VALUE	Service-Type			Modem-Relay		14
+#VALUE	Service-Type			IAPP-Register		15
+#VALUE	Service-Type			IAPP-AP-Check		16
 #
-ATTRIBUTE	Originating-Line-Info			94	string
-
-#  As defined in draft-sterman-aaa-sip-00.txt
-ATTRIBUTE	Digest-Response				206	string
-ATTRIBUTE	Digest-Attributes			207	octets	# stupid format
-
+#VALUE	Framed-Protocol			GPRS-PDP-Context	7
 #
-#	Integer Translations
+#VALUE	NAS-Port-Type			Wireless-CDMA2000	22
+#VALUE	NAS-Port-Type			Wireless-UMTS		23
+#VALUE	NAS-Port-Type			Wireless-1X-EV		24
+#VALUE	NAS-Port-Type			IAPP			25
 #
-VALUE	Service-Type			Voice			12
-VALUE	Service-Type			Fax			13
-VALUE	Service-Type			Modem-Relay		14
-VALUE	Service-Type			IAPP-Register		15
-VALUE	Service-Type			IAPP-AP-Check		16
-
-VALUE	Framed-Protocol			GPRS-PDP-Context	7
-
-VALUE	NAS-Port-Type			Wireless-CDMA2000	22
-VALUE	NAS-Port-Type			Wireless-UMTS		23
-VALUE	NAS-Port-Type			Wireless-1X-EV		24
-VALUE	NAS-Port-Type			IAPP			25
-
-VALUE	Framed-Protocol			PPTP			9
+#VALUE	Framed-Protocol			PPTP			9