summaryrefslogtreecommitdiffstats
path: root/Bachelor/CCNA4/en_CCNA4_v30/elabs/Engine/Router 1760/cmd_extNacl.txt
blob: aee60b88317cbdc001e9821b0c07828555a8010f (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
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
extNaclC.addSC("default", "Set a command to its defaults");
extNaclC.addSC("deny", "Specify packets to reject");
	extNaclC.deny.addSC("<0-255>", "An IP protocol number");
		extNaclC.deny["<0-255>"].addSC("A.B.C.D", "Source address");
			extNaclC.deny["<0-255>"]["A.B.C.D"].addSC("A.B.C.D", "Source wildcard bits");
				extNaclC.deny["<0-255>"]["A.B.C.D"]["A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.deny["<0-255>"]["A.B.C.D"]["A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.deny["<0-255>"]["A.B.C.D"]["A.B.C.D"].addSC("host", "A single destination host");
		extNaclC.deny["<0-255>"].addSC("any", "Any source host");
			extNaclC.deny["<0-255>"].any.addSC("A.B.C.D", "Destination address");
				extNaclC.deny["<0-255>"].any["A.B.C.D"].addSC("A.B.C.D", "Destination wildcard bits");
			extNaclC.deny["<0-255>"].any.addSC("any", "Any destination host");
			extNaclC.deny["<0-255>"].any.addSC("host", "A single destination host");
				extNaclC.deny["<0-255>"].any.host.addSC("Hostname or A.B.C.D", "Destination address");
		extNaclC.deny["<0-255>"].addSC("host", "A single source host");
			extNaclC.deny["<0-255>"].host.addSC("Hostname or A.B.C.D", "Source address");
				extNaclC.deny["<0-255>"].host["Hostname or A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.deny["<0-255>"].host["Hostname or A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.deny["<0-255>"].host["Hostname or A.B.C.D"].addSC("host", "A single destination host");
	extNaclC.deny.addSC("eigrp", "Cisco's EIGRP routing protocol");
		extNaclC.deny.eigrp.addSC("A.B.C.D", "Source address");
			extNaclC.deny.eigrp["A.B.C.D"].addSC("A.B.C.D", "Source wildcard bits");
				extNaclC.deny.eigrp["A.B.C.D"]["A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.deny.eigrp["A.B.C.D"]["A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.deny.eigrp["A.B.C.D"]["A.B.C.D"].addSC("host", "A single destination host");
		extNaclC.deny.eigrp.addSC("any", "Any source host");
			extNaclC.deny.eigrp.any.addSC("A.B.C.D", "Destination address");
				extNaclC.deny.eigrp.any["A.B.C.D"].addSC("A.B.C.D", "Destination wildcard bits");
			extNaclC.deny.eigrp.any.addSC("any", "Any destination host");
		extNaclC.deny.eigrp.addSC("host", "A single source host");
			extNaclC.deny.eigrp.host.addSC("Hostname or A.B.C.D", "Source address");
				extNaclC.deny.eigrp.host["Hostname or A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.deny.eigrp.host["Hostname or A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.deny.eigrp.host["Hostname or A.B.C.D"].addSC("host", "A single destination host");
	extNaclC.deny.addSC("gre", "Cisco's GRE tunneling");
	extNaclC.deny.addSC("icmp", "Internet Control Message Protocol");
		extNaclC.deny.icmp.addSC("A.B.C.D", "Source address");
			extNaclC.deny.icmp["A.B.C.D"].addSC("A.B.C.D", "Source wildcard bits");
				extNaclC.deny.icmp["A.B.C.D"]["A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.deny.icmp["A.B.C.D"]["A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.deny.icmp["A.B.C.D"]["A.B.C.D"].addSC("host", "A single destination host");
		extNaclC.deny.icmp.addSC("any", "Any source host");
			extNaclC.deny.icmp.any.addSC("A.B.C.D", "Destination address");
				extNaclC.deny.icmp.any["A.B.C.D"].addSC("A.B.C.D", "Destination wildcard bits");
			extNaclC.deny.icmp.any.addSC("any", "Any destination host");
				extNaclC.deny.icmp.any.any.addSC("<0-255>", "ICMP message type");
			extNaclC.deny.icmp.any.addSC("host", "A single destination host");
				extNaclC.deny.icmp.any.host.addSC("Hostname or A.B.C.D", "Destination address");
		extNaclC.deny.icmp.addSC("host", "A single source host");
			extNaclC.deny.icmp.host.addSC("Hostname or A.B.C.D", "Source address");
				extNaclC.deny.icmp.host["Hostname or A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.deny.icmp.host["Hostname or A.B.C.D"].addSC("any", "Any destination host");
	extNaclC.deny.addSC("igmp", "Internet Gateway Message Protocol");
		extNaclC.deny.igmp.addSC("A.B.C.D", "Source address");
			extNaclC.deny.igmp["A.B.C.D"].addSC("A.B.C.D", "Source wildcard bits");
				extNaclC.deny.igmp["A.B.C.D"]["A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.deny.igmp["A.B.C.D"]["A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.deny.igmp["A.B.C.D"]["A.B.C.D"].addSC("host", "A single destination host");
		extNaclC.deny.igmp.addSC("any", "Any source host");
			extNaclC.deny.igmp.any.addSC("A.B.C.D", "Destination address");
				extNaclC.deny.igmp.any["A.B.C.D"].addSC("A.B.C.D", "Destination wildcard bits");
			extNaclC.deny.igmp.any.addSC("any", "Any destination host");
			extNaclC.deny.igmp.any.addSC("host", "A single destination host");
				extNaclC.deny.igmp.any.host.addSC("Hostname or A.B.C.D", "Destination address");
		extNaclC.deny.igmp.addSC("host", "A single source host");
			extNaclC.deny.igmp.host.addSC("Hostname or A.B.C.D", "Source address");
				extNaclC.deny.igmp.host["Hostname or A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.deny.igmp.host["Hostname or A.B.C.D"].addSC("any", "Any destination host");
	extNaclC.deny.addSC("igrp", "Cisco's IGRP routing protocol");
		extNaclC.deny.igrp.addSC("A.B.C.D", "Source address");
			extNaclC.deny.igrp["A.B.C.D"].addSC("A.B.C.D", "Source wildcard bits");
				extNaclC.deny.igrp["A.B.C.D"]["A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.deny.igrp["A.B.C.D"]["A.B.C.D"].addSC("any", "Any destination host");
		extNaclC.deny.igrp.addSC("any", "Any source host");
			extNaclC.deny.igrp.any.addSC("A.B.C.D", "Destination address");
				extNaclC.deny.igrp.any["A.B.C.D"].addSC("A.B.C.D", "Destination wildcard bits");
			extNaclC.deny.igrp.any.addSC("any", "Any destination host");
			extNaclC.deny.igrp.any.addSC("host", "A single destination host");
				extNaclC.deny.igrp.any.host.addSC("Hostname or A.B.C.D", "Destination address");
		extNaclC.deny.igrp.addSC("host", "A single source host");
			extNaclC.deny.igrp.host.addSC("Hostname or A.B.C.D", "Source address");
				extNaclC.deny.igrp.host["Hostname or A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.deny.igrp.host["Hostname or A.B.C.D"].addSC("host", "A single destination host");
	extNaclC.deny.addSC("ip", "Any Internet Protocol");
		extNaclC.deny.ip.addSC("A.B.C.D", "Source address");
			extNaclC.deny.ip["A.B.C.D"].addSC("A.B.C.D", "Source wildcard bits");
				extNaclC.deny.ip["A.B.C.D"]["A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.deny.ip["A.B.C.D"]["A.B.C.D"].addSC("any", "Any destination host");
		extNaclC.deny.ip.addSC("any", "Any source host");
			extNaclC.deny.ip.any.addSC("A.B.C.D", "Destination address");
				extNaclC.deny.ip.any["A.B.C.D"].addSC("A.B.C.D", "Destination wildcard bits");
			extNaclC.deny.ip.any.addSC("any", "Any destination host");
				extNaclC.deny.ip.any.host.addSC("Hostname or A.B.C.D", "Destination address");
		extNaclC.deny.ip.addSC("host", "A single source host");
			extNaclC.deny.ip.host.addSC("Hostname or A.B.C.D", "Source address");
				extNaclC.deny.ip.host["Hostname or A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.deny.ip.host["Hostname or A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.deny.ip.host["Hostname or A.B.C.D"].addSC("host", "A single destination host");
	extNaclC.deny.addSC("ipinip", "IP in IP tunneling");
		extNaclC.deny.ipinip.addSC("A.B.C.D", "Source address");
			extNaclC.deny.ipinip["A.B.C.D"].addSC("A.B.C.D", "Source wildcard bits");
				extNaclC.deny.ipinip["A.B.C.D"]["A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.deny.ipinip["A.B.C.D"]["A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.deny.ipinip["A.B.C.D"]["A.B.C.D"].addSC("host", "A single destination host");
		extNaclC.deny.ipinip.addSC("any", "Any source host");
			extNaclC.deny.ipinip.any.addSC("A.B.C.D", "Destination address");
				extNaclC.deny.ipinip.any["A.B.C.D"].addSC("A.B.C.D", "Destination wildcard bits");
			extNaclC.deny.ipinip.any.addSC("any", "Any destination host");
			extNaclC.deny.ipinip.any.addSC("host", "A single destination host");
				extNaclC.deny.ipinip.any.host.addSC("Hostname or A.B.C.D", "Destination address");
		extNaclC.deny.ipinip.addSC("host", "A single source host");
			extNaclC.deny.ipinip.host.addSC("Hostname or A.B.C.D", "Source address");
				extNaclC.deny.ipinip.host["Hostname or A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.deny.ipinip.host["Hostname or A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.deny.ipinip.host["Hostname or A.B.C.D"].addSC("host", "A single destination host");
	extNaclC.deny.addSC("nos", "KA9Q NOS compatible IP over IP tunneling");
		extNaclC.deny.nos.addSC("A.B.C.D", "Source address");
			extNaclC.deny.nos["A.B.C.D"].addSC("A.B.C.D", "Source wildcard bits");
				extNaclC.deny.nos["A.B.C.D"]["A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.deny.nos["A.B.C.D"]["A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.deny.nos["A.B.C.D"]["A.B.C.D"].addSC("host", "A single destination host");
		extNaclC.deny.nos.addSC("any", "Any source host");
			extNaclC.deny.nos.any.addSC("A.B.C.D", "Destination address");
				extNaclC.deny.nos.any["A.B.C.D"].addSC("A.B.C.D", "Destination wildcard bits");
			extNaclC.deny.nos.any.addSC("any", "Any destination host");
			extNaclC.deny.nos.any.addSC("host", "A single destination host");
				extNaclC.deny.nos.any.host.addSC("Hostname or A.B.C.D", "Destination address");
		extNaclC.deny.nos.addSC("host", "A single source host");
			extNaclC.deny.nos.host.addSC("Hostname or A.B.C.D", "Source address");
				extNaclC.deny.nos.host["Hostname or A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.deny.nos.host["Hostname or A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.deny.nos.host["Hostname or A.B.C.D"].addSC("host", "A single destination host");
	extNaclC.deny.addSC("ospf", "OSPF routing protocol");
		extNaclC.deny.ospf.addSC("A.B.C.D", "Source address");
			extNaclC.deny.ospf["A.B.C.D"].addSC("A.B.C.D", "Source wildcard bits");
				extNaclC.deny.ospf["A.B.C.D"]["A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.deny.ospf["A.B.C.D"]["A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.deny.ospf["A.B.C.D"]["A.B.C.D"].addSC("host", "A single destination host");
		extNaclC.deny.ospf.addSC("any", "Any source host");
			extNaclC.deny.ospf.any.addSC("A.B.C.D", "Destination address");
				extNaclC.deny.ospf.any["A.B.C.D"].addSC("A.B.C.D", "Destination wildcard bits");
			extNaclC.deny.ospf.any.addSC("any", "Any destination host");
			extNaclC.deny.ospf.any.addSC("host", "A single destination host");
				extNaclC.deny.ospf.any.host.addSC("Hostname or A.B.C.D", "Destination address");
		extNaclC.deny.ospf.addSC("host", "A single source host");
			extNaclC.deny.ospf.host.addSC("Hostname or A.B.C.D", "Source address");
				extNaclC.deny.ospf.host["Hostname or A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.deny.ospf.host["Hostname or A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.deny.ospf.host["Hostname or A.B.C.D"].addSC("host", "A single destination host");
	extNaclC.deny.addSC("pcp", "Payload Compression Protocol");
		extNaclC.deny.pcp.addSC("A.B.C.D", "Source address");
			extNaclC.deny.pcp["A.B.C.D"].addSC("A.B.C.D", "Source wildcard bits");
				extNaclC.deny.pcp["A.B.C.D"]["A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.deny.pcp["A.B.C.D"]["A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.deny.pcp["A.B.C.D"]["A.B.C.D"].addSC("host", "A single destination host");
		extNaclC.deny.pcp.addSC("any", "Any source host");
			extNaclC.deny.pcp.any.addSC("A.B.C.D", "Destination address");
				extNaclC.deny.pcp.any["A.B.C.D"].addSC("A.B.C.D", "Destination wildcard bits");
			extNaclC.deny.pcp.any.addSC("any", "Any destination host");
			extNaclC.deny.pcp.any.addSC("host", "A single destination host");
				extNaclC.deny.pcp.any.host.addSC("Hostname or A.B.C.D", "Destination address");
		extNaclC.deny.pcp.addSC("host", "A single source host");
			extNaclC.deny.pcp.host.addSC("Hostname or A.B.C.D", "Source address");
				extNaclC.deny.pcp.host["Hostname or A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.deny.pcp.host["Hostname or A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.deny.pcp.host["Hostname or A.B.C.D"].addSC("host", "A single destination host");
	extNaclC.deny.addSC("pim", "Protocol Independent Multicast");
		extNaclC.deny.pim.addSC("A.B.C.D", "Source address");
			extNaclC.deny.pim["A.B.C.D"].addSC("A.B.C.D", "Source wildcard bits");
				extNaclC.deny.pim["A.B.C.D"]["A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.deny.pim["A.B.C.D"]["A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.deny.pim["A.B.C.D"]["A.B.C.D"].addSC("host", "A single destination host");
		extNaclC.deny.pim.addSC("any", "Any source host");
			extNaclC.deny.pim.any.addSC("A.B.C.D", "Destination address");
				extNaclC.deny.pim.any["A.B.C.D"].addSC("A.B.C.D", "Destination wildcard bits");
			extNaclC.deny.pim.any.addSC("any", "Any destination host");
			extNaclC.deny.pim.any.addSC("host", "A single destination host");
				extNaclC.deny.pim.any.host.addSC("Hostname or A.B.C.D", "Destination address");
		extNaclC.deny.pim.addSC("host", "A single source host");
			extNaclC.deny.pim.host.addSC("Hostname or A.B.C.D", "Source address");
				extNaclC.deny.pim.host["Hostname or A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.deny.pim.host["Hostname or A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.deny.pim.host["Hostname or A.B.C.D"].addSC("host", "A single destination host");
	extNaclC.deny.addSC("tcp", "Transmission Control Protocol");
		extNaclC.deny.tcp.addSC("A.B.C.D", "Source address");
			extNaclC.deny.tcp["A.B.C.D"].addSC("A.B.C.D", "Source wildcard bits");
				extNaclC.deny.tcp["A.B.C.D"]["A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.deny.tcp["A.B.C.D"]["A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.deny.tcp["A.B.C.D"]["A.B.C.D"].addSC("eq", "Match only packets on a given port number");
		extNaclC.deny.tcp.addSC("any", "Any source host");
			extNaclC.deny.tcp.any.addSC("A.B.C.D", "Destination address");
				extNaclC.deny.tcp.any["A.B.C.D"].addSC("A.B.C.D", "Destination wildcard bits");
			extNaclC.deny.tcp.any.addSC("any", "Any destination host");
			extNaclC.deny.tcp.any.addSC("eq", "Match only packets on a given port number");
				extNaclC.deny.tcp.any["eq"].addSC("<0-65535>", "Port number");
				extNaclC.deny.tcp.any["eq"].addSC("www", "World Wide Web (HTTP, 80)");
			extNaclC.deny.tcp.any.addSC("gt", "Match only packets with a greater port number");
				extNaclC.deny.tcp.any["gt"].addSC("time", "Time (37)");
				extNaclC.deny.tcp.any["gt"].addSC("whois", "Nicname (43)");
				extNaclC.deny.tcp.any["gt"].addSC("www", "World Wide Web (HTTP, 80)");
			extNaclC.deny.tcp.any.addSC("host", "A single destination host");
				extNaclC.deny.tcp.any.host.addSC("Hostname or A.B.C.D", "Destination address");
			extNaclC.deny.tcp.any.addSC("lt", "Match only packets with a lower port number");
				extNaclC.deny.tcp.any["lt"].addSC("whois", "Nicname (43)");
				extNaclC.deny.tcp.any["lt"].addSC("www", "World Wide Web (HTTP, 80)");
			extNaclC.deny.tcp.any.addSC("neq", "Match only packets not on a given port number");
				extNaclC.deny.tcp.any.neq.addSC("<0-65535>", "Port number");
				extNaclC.deny.tcp.any.neq.addSC("exec", "Exec (rsh, 512)");
				extNaclC.deny.tcp.any.neq.addSC("finger", "Finger (79)");
			extNaclC.deny.tcp.any.addSC("range", "Match only packets in the range of port numbers");
				extNaclC.deny.tcp.any.range.addSC("<0-65535>", "Port number");
				extNaclC.deny.tcp.any.range.addSC("bgp", "Border Gateway Protocol (179)");
				extNaclC.deny.tcp.any.range.addSC("www", "World Wide Web (HTTP, 80)");
		extNaclC.deny.tcp.addSC("host", "A single source host");
			extNaclC.deny.tcp.host.addSC("Hostname or A.B.C.D", "Source address");
				extNaclC.deny.tcp.host["Hostname or A.B.C.D"].addSC("host", "A single destination host");
	extNaclC.deny.addSC("udp", "User Datagram Protocol");
		extNaclC.deny.udp.addSC("A.B.C.D", "Source address");
			extNaclC.deny.udp["A.B.C.D"].addSC("A.B.C.D", "Source wildcard bits");
				extNaclC.deny.udp["A.B.C.D"]["A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.deny.udp["A.B.C.D"]["A.B.C.D"].addSC("neq", "Match only packets not on a given port number");
				extNaclC.deny.udp["A.B.C.D"]["A.B.C.D"].addSC("range", "Match only packets in the range of port numbers");
		extNaclC.deny.udp.addSC("any", "Any source host");
			extNaclC.deny.udp.any.addSC("A.B.C.D", "Destination address");
				extNaclC.deny.udp.any["A.B.C.D"].addSC("A.B.C.D", "Destination wildcard bits");
			extNaclC.deny.udp.any.addSC("any", "Any destination host");
				extNaclC.deny.udp.any.any.addSC("log", "Log matches against this entry");
				extNaclC.deny.udp.any.any.addSC("time-range", "Specify a time-range");
				extNaclC.deny.udp.any.any.addSC("tos", "Match packets with given TOS value");
			extNaclC.deny.udp.any.addSC("eq", "Match only packets on a given port number");
				extNaclC.deny.udp.any["eq"].addSC("domain", "Domain Name Service (DNS, 53)");
				extNaclC.deny.udp.any["eq"].addSC("time", "Time (37)");
				extNaclC.deny.udp.any["eq"].addSC("who", "Who service (rwho, 513)");
			extNaclC.deny.udp.any.addSC("gt", "Match only packets with a greater port number");
				extNaclC.deny.udp.any["gt"].addSC("tftp", "Trivial File Transfer Protocol (69)");

				extNaclC.deny.udp.any["gt"].addSC("who", "Who service (rwho, 513)");
			extNaclC.deny.udp.any.addSC("host", "A single destination host");
				extNaclC.deny.udp.any.host.addSC("Hostname or A.B.C.D", "Destination address");
			extNaclC.deny.udp.any.addSC("lt", "Match only packets with a lower port number");
				extNaclC.deny.udp.any["lt"].addSC("<0-65535>", "Port number");
				extNaclC.deny.udp.any["lt"].addSC("biff", "Biff (mail notification, comsat, 512)");
			extNaclC.deny.udp.any.addSC("neq", "Match only packets not on a given port number");
				extNaclC.deny.udp.any.neq.addSC("<0-65535>", "Port number");
				extNaclC.deny.udp.any.neq.addSC("time", "Time (37)");
				extNaclC.deny.udp.any.neq.addSC("who", "Who service (rwho, 513)");
			extNaclC.deny.udp.any.addSC("range", "Match only packets in the range of port numbers");
				extNaclC.deny.udp.any.range.addSC("<0-65535>", "Port number");
				extNaclC.deny.udp.any.range.addSC("biff", "Biff (mail notification, comsat, 512)");
				extNaclC.deny.udp.any.range.addSC("time", "Time (37)");
				extNaclC.deny.udp.any.range.addSC("who", "Who service (rwho, 513)");
		extNaclC.deny.udp.addSC("host", "A single source host");
			extNaclC.deny.udp.host.addSC("Hostname or A.B.C.D", "Source address");
				extNaclC.deny.udp.host["Hostname or A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.deny.udp.host["Hostname or A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.deny.udp.host["Hostname or A.B.C.D"].addSC("range", "Match only packets in the range of port numbers");
extNaclC.addSC("dynamic", "Specify a DYNAMIC list of PERMITs or DENYs");
extNaclC.addSC("evaluate", "Evaluate an access list");
	extNaclC.evaluate.addSC("WORD", "IP reflexive access list name");
extNaclC.addSC("exit", "Exit from access-list configuration mode");
extNaclC.addSC("no", "Negate a command or set its defaults");
	extNaclC.no.addSC("deny", "Specify packets to reject");
		extNaclC.no.deny.addSC("<0-255>", "An IP protocol number");
			extNaclC.no.deny["<0-255>"].addSC("A.B.C.D", "Source address");
				extNaclC.no.deny["<0-255>"]["A.B.C.D"].addSC("A.B.C.D", "Source wildcard bits");
			extNaclC.no.deny["<0-255>"].addSC("any", "Any source host");
				extNaclC.no.deny["<0-255>"].any.addSC("A.B.C.D", "Destination address");
				extNaclC.no.deny["<0-255>"].any.addSC("any", "Any destination host");
				extNaclC.no.deny["<0-255>"].any.addSC("host", "A single destination host");
			extNaclC.no.deny["<0-255>"].addSC("host", "A single source host");
		extNaclC.no.deny.addSC("tcp", "Transmission Control Protocol");
		extNaclC.no.deny.addSC("udp", "User Datagram Protocol");
	extNaclC.no.addSC("dynamic", "Specify a DYNAMIC list of PERMITs or DENYs");
	extNaclC.no.addSC("evaluate", "Evaluate an access list");
		extNaclC.no.evaluate.addSC("WORD", "IP reflexive access list name");
extNaclC.addSC("permit", "Specify packets to forward");
	extNaclC.permit.addSC("<0-255>", "An IP protocol number");
		extNaclC.permit["<0-255>"].addSC("A.B.C.D", "Source address");
			extNaclC.permit["<0-255>"]["A.B.C.D"].addSC("A.B.C.D", "Source wildcard bits");
				extNaclC.permit["<0-255>"]["A.B.C.D"]["A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.permit["<0-255>"]["A.B.C.D"]["A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.permit["<0-255>"]["A.B.C.D"]["A.B.C.D"].addSC("host", "A single destination host");
		extNaclC.permit["<0-255>"].addSC("any", "Any source host");
			extNaclC.permit["<0-255>"].any.addSC("A.B.C.D", "Destination address");
				extNaclC.permit["<0-255>"].any["A.B.C.D"].addSC("A.B.C.D", "Destination wildcard bits");
			extNaclC.permit["<0-255>"].any.addSC("any", "Any destination host");
			extNaclC.permit["<0-255>"].any.addSC("host", "A single destination host");
				extNaclC.permit["<0-255>"].any.host.addSC("Hostname or A.B.C.D", "Destination address");
		extNaclC.permit["<0-255>"].addSC("host", "A single source host");
			extNaclC.permit["<0-255>"].host.addSC("Hostname or A.B.C.D", "Source address");
				extNaclC.permit["<0-255>"].host["Hostname or A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.permit["<0-255>"].host["Hostname or A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.permit["<0-255>"].host["Hostname or A.B.C.D"].addSC("host", "A single destination host");
	extNaclC.permit.addSC("ahp", "Authentication Header Protocol");
		extNaclC.permit.ahp.addSC("A.B.C.D", "Source address");
			extNaclC.permit.ahp["A.B.C.D"].addSC("A.B.C.D", "Source wildcard bits");
				extNaclC.permit.ahp["A.B.C.D"]["A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.permit.ahp["A.B.C.D"]["A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.permit.ahp["A.B.C.D"]["A.B.C.D"].addSC("host", "A single destination host");
		extNaclC.permit.ahp.addSC("any", "Any source host");
			extNaclC.permit.ahp.any.addSC("A.B.C.D", "Destination address");
				extNaclC.permit.ahp.any["A.B.C.D"].addSC("A.B.C.D", "Destination wildcard bits");
			extNaclC.permit.ahp.any.addSC("any", "Any destination host");
			extNaclC.permit.ahp.any.addSC("host", "A single destination host");
				extNaclC.permit.ahp.any.host.addSC("Hostname or A.B.C.D", "Destination address");
		extNaclC.permit.ahp.addSC("host", "A single source host");
			extNaclC.permit.ahp.host.addSC("Hostname or A.B.C.D", "Source address");
				extNaclC.permit.ahp.host["Hostname or A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.permit.ahp.host["Hostname or A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.permit.ahp.host["Hostname or A.B.C.D"].addSC("host", "A single destination host");
	extNaclC.permit.addSC("eigrp", "Cisco's EIGRP routing protocol");
	extNaclC.permit.addSC("esp", "Encapsulation Security Payload");
	extNaclC.permit.addSC("gre", "Cisco's GRE tunneling");
	extNaclC.permit.addSC("icmp", "Internet Control Message Protocol");
		extNaclC.permit.icmp.addSC("A.B.C.D", "Source address");
			extNaclC.permit.icmp["A.B.C.D"].addSC("A.B.C.D", "Source wildcard bits");
				extNaclC.permit.icmp["A.B.C.D"]["A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.permit.icmp["A.B.C.D"]["A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.permit.icmp["A.B.C.D"]["A.B.C.D"].addSC("host", "A single destination host");
		extNaclC.permit.icmp.addSC("any", "Any source host");
			extNaclC.permit.icmp.any.addSC("A.B.C.D", "Destination address");
				extNaclC.permit.icmp.any["A.B.C.D"].addSC("A.B.C.D", "Destination wildcard bits");
			extNaclC.permit.icmp.any.addSC("any", "Any destination host");
				extNaclC.permit.icmp.any.any.addSC("<0-255>", "ICMP message type");
				extNaclC.permit.icmp.any.any.addSC("echo", "Echo (ping)");
			extNaclC.permit.icmp.any.addSC("host", "A single destination host");
				extNaclC.permit.icmp.any.host.addSC("Hostname or A.B.C.D", "Destination address");
		extNaclC.permit.icmp.addSC("host", "A single source host");
			extNaclC.permit.icmp.host.addSC("Hostname or A.B.C.D", "Source address");
				extNaclC.permit.icmp.host["Hostname or A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.permit.icmp.host["Hostname or A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.permit.icmp.host["Hostname or A.B.C.D"].addSC("host", "A single destination host");
	extNaclC.permit.addSC("igmp", "Internet Gateway Message Protocol");
		extNaclC.permit.igmp.addSC("A.B.C.D", "Source address");
			extNaclC.permit.igmp["A.B.C.D"].addSC("A.B.C.D", "Source wildcard bits");
				extNaclC.permit.igmp["A.B.C.D"]["A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.permit.igmp["A.B.C.D"]["A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.permit.igmp["A.B.C.D"]["A.B.C.D"].addSC("host", "A single destination host");
		extNaclC.permit.igmp.addSC("any", "Any source host");
			extNaclC.permit.igmp.any.addSC("A.B.C.D", "Destination address");
				extNaclC.permit.igmp.any["A.B.C.D"].addSC("A.B.C.D", "Destination wildcard bits");
			extNaclC.permit.igmp.any.addSC("any", "Any destination host");
				extNaclC.permit.igmp.any.any.addSC("<0-15>", "IGMP message type");
				extNaclC.permit.igmp.any.any.addSC("trace", "Multicast trace");
			extNaclC.permit.igmp.any.addSC("host", "A single destination host");
				extNaclC.permit.igmp.any.host.addSC("Hostname or A.B.C.D", "Destination address");
		extNaclC.permit.igmp.addSC("host", "A single source host");
			extNaclC.permit.igmp.host.addSC("Hostname or A.B.C.D", "Source address");
				extNaclC.permit.igmp.host["Hostname or A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.permit.igmp.host["Hostname or A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.permit.igmp.host["Hostname or A.B.C.D"].addSC("host", "A single destination host");
	extNaclC.permit.addSC("igrp", "Cisco's IGRP routing protocol");
		extNaclC.permit.igrp.addSC("A.B.C.D", "Source address");
			extNaclC.permit.igrp["A.B.C.D"].addSC("A.B.C.D", "Source wildcard bits");
				extNaclC.permit.igrp["A.B.C.D"]["A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.permit.igrp["A.B.C.D"]["A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.permit.igrp["A.B.C.D"]["A.B.C.D"].addSC("host", "A single destination host");
		extNaclC.permit.igrp.addSC("any", "Any source host");
			extNaclC.permit.igrp.any.addSC("A.B.C.D", "Destination address");
				extNaclC.permit.igrp.any["A.B.C.D"].addSC("A.B.C.D", "Destination wildcard bits");
			extNaclC.permit.igrp.any.addSC("any", "Any destination host");
			extNaclC.permit.igrp.any.addSC("host", "A single destination host");
				extNaclC.permit.igrp.any.host.addSC("Hostname or A.B.C.D", "Destination address");
		extNaclC.permit.igrp.addSC("host", "A single source host");
			extNaclC.permit.igrp.host.addSC("Hostname or A.B.C.D", "Source address");
				extNaclC.permit.igrp.host["Hostname or A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.permit.igrp.host["Hostname or A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.permit.igrp.host["Hostname or A.B.C.D"].addSC("host", "A single destination host");
	extNaclC.permit.addSC("ip", "Any Internet Protocol");
		extNaclC.permit.ip.addSC("A.B.C.D", "Source address");
			extNaclC.permit.ip["A.B.C.D"].addSC("A.B.C.D", "Source wildcard bits");
				extNaclC.permit.ip["A.B.C.D"]["A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.permit.ip["A.B.C.D"]["A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.permit.ip["A.B.C.D"]["A.B.C.D"].addSC("host", "A single destination host");
		extNaclC.permit.ip.addSC("any", "Any source host");
			extNaclC.permit.ip.any.addSC("A.B.C.D", "Destination address");
				extNaclC.permit.ip.any["A.B.C.D"].addSC("A.B.C.D", "Destination wildcard bits");
			extNaclC.permit.ip.any.addSC("any", "Any destination host");
			extNaclC.permit.ip.any.addSC("host", "A single destination host");
				extNaclC.permit.ip.any.host.addSC("Hostname or A.B.C.D", "Destination address");
		extNaclC.permit.ip.addSC("host", "A single source host");
			extNaclC.permit.ip.host.addSC("Hostname or A.B.C.D", "Source address");
				extNaclC.permit.ip.host["Hostname or A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.permit.ip.host["Hostname or A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.permit.ip.host["Hostname or A.B.C.D"].addSC("host", "A single destination host");
	extNaclC.permit.addSC("ipinip", "IP in IP tunneling");
		extNaclC.permit.ipinip.addSC("A.B.C.D", "Source address");
			extNaclC.permit.ipinip["A.B.C.D"].addSC("A.B.C.D", "Source wildcard bits");
				extNaclC.permit.ipinip["A.B.C.D"]["A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.permit.ipinip["A.B.C.D"]["A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.permit.ipinip["A.B.C.D"]["A.B.C.D"].addSC("host", "A single destination host");
		extNaclC.permit.ipinip.addSC("any", "Any source host");
			extNaclC.permit.ipinip.any.addSC("A.B.C.D", "Destination address");
				extNaclC.permit.ipinip.any["A.B.C.D"].addSC("A.B.C.D", "Destination wildcard bits");
			extNaclC.permit.ipinip.any.addSC("any", "Any destination host");
			extNaclC.permit.ipinip.any.addSC("host", "A single destination host");
				extNaclC.permit.ipinip.any.host.addSC("Hostname or A.B.C.D", "Destination address");
		extNaclC.permit.ipinip.addSC("host", "A single source host");
			extNaclC.permit.ipinip.host.addSC("Hostname or A.B.C.D", "Source address");
				extNaclC.permit.ipinip.host["Hostname or A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.permit.ipinip.host["Hostname or A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.permit.ipinip.host["Hostname or A.B.C.D"].addSC("host", "A single destination host");
	extNaclC.permit.addSC("nos", "KA9Q NOS compatible IP over IP tunneling");
		extNaclC.permit.nos.addSC("A.B.C.D", "Source address");
			extNaclC.permit.nos["A.B.C.D"].addSC("A.B.C.D", "Source wildcard bits");
				extNaclC.permit.nos["A.B.C.D"]["A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.permit.nos["A.B.C.D"]["A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.permit.nos["A.B.C.D"]["A.B.C.D"].addSC("host", "A single destination host");
		extNaclC.permit.nos.addSC("any", "Any source host");
			extNaclC.permit.nos.any.addSC("A.B.C.D", "Destination address");
				extNaclC.permit.nos.any["A.B.C.D"].addSC("A.B.C.D", "Destination wildcard bits");
			extNaclC.permit.nos.any.addSC("any", "Any destination host");
			extNaclC.permit.nos.any.addSC("host", "A single destination host");
				extNaclC.permit.nos.any.host.addSC("Hostname or A.B.C.D", "Destination address");
		extNaclC.permit.nos.addSC("host", "A single source host");
			extNaclC.permit.nos.host.addSC("Hostname or A.B.C.D", "Source address");
				extNaclC.permit.nos.host["Hostname or A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.permit.nos.host["Hostname or A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.permit.nos.host["Hostname or A.B.C.D"].addSC("host", "A single destination host");
	extNaclC.permit.addSC("ospf", "OSPF routing protocol");
		extNaclC.permit.ospf.addSC("A.B.C.D", "Source address");
			extNaclC.permit.ospf["A.B.C.D"].addSC("A.B.C.D", "Source wildcard bits");
				extNaclC.permit.ospf["A.B.C.D"]["A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.permit.ospf["A.B.C.D"]["A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.permit.ospf["A.B.C.D"]["A.B.C.D"].addSC("host", "A single destination host");
		extNaclC.permit.ospf.addSC("any", "Any source host");
			extNaclC.permit.ospf.any.addSC("A.B.C.D", "Destination address");
				extNaclC.permit.ospf.any["A.B.C.D"].addSC("A.B.C.D", "Destination wildcard bits");
			extNaclC.permit.ospf.any.addSC("any", "Any destination host");
			extNaclC.permit.ospf.any.addSC("host", "A single destination host");
				extNaclC.permit.ospf.any.host.addSC("Hostname or A.B.C.D", "Destination address");
		extNaclC.permit.ospf.addSC("host", "A single source host");
			extNaclC.permit.ospf.host.addSC("Hostname or A.B.C.D", "Source address");
				extNaclC.permit.ospf.host["Hostname or A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.permit.ospf.host["Hostname or A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.permit.ospf.host["Hostname or A.B.C.D"].addSC("host", "A single destination host");
	extNaclC.permit.addSC("pcp", "Payload Compression Protocol");
		extNaclC.permit.pcp.addSC("A.B.C.D", "Source address");
			extNaclC.permit.pcp["A.B.C.D"].addSC("A.B.C.D", "Source wildcard bits");
				extNaclC.permit.pcp["A.B.C.D"]["A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.permit.pcp["A.B.C.D"]["A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.permit.pcp["A.B.C.D"]["A.B.C.D"].addSC("host", "A single destination host");
		extNaclC.permit.pcp.addSC("any", "Any source host");
			extNaclC.permit.pcp.any.addSC("A.B.C.D", "Destination address");
				extNaclC.permit.pcp.any["A.B.C.D"].addSC("A.B.C.D", "Destination wildcard bits");
			extNaclC.permit.pcp.any.addSC("any", "Any destination host");
			extNaclC.permit.pcp.any.addSC("host", "A single destination host");
				extNaclC.permit.pcp.any.host.addSC("Hostname or A.B.C.D", "Destination address");
		extNaclC.permit.pcp.addSC("host", "A single source host");
			extNaclC.permit.pcp.host.addSC("Hostname or A.B.C.D", "Source address");
				extNaclC.permit.pcp.host["Hostname or A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.permit.pcp.host["Hostname or A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.permit.pcp.host["Hostname or A.B.C.D"].addSC("host", "A single destination host");
	extNaclC.permit.addSC("pim", "Protocol Independent Multicast");
		extNaclC.permit.pim.addSC("A.B.C.D", "Source address");
			extNaclC.permit.pim["A.B.C.D"].addSC("A.B.C.D", "Source wildcard bits");
				extNaclC.permit.pim["A.B.C.D"]["A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.permit.pim["A.B.C.D"]["A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.permit.pim["A.B.C.D"]["A.B.C.D"].addSC("host", "A single destination host");
		extNaclC.permit.pim.addSC("any", "Any source host");
			extNaclC.permit.pim.any.addSC("A.B.C.D", "Destination address");
				extNaclC.permit.pim.any["A.B.C.D"].addSC("A.B.C.D", "Destination wildcard bits");
			extNaclC.permit.pim.any.addSC("any", "Any destination host");
			extNaclC.permit.pim.any.addSC("host", "A single destination host");
				extNaclC.permit.pim.any.host.addSC("Hostname or A.B.C.D", "Destination address");
		extNaclC.permit.pim.addSC("host", "A single source host");
			extNaclC.permit.pim.host.addSC("Hostname or A.B.C.D", "Source address");
				extNaclC.permit.pim.host["Hostname or A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.permit.pim.host["Hostname or A.B.C.D"].addSC("any", "Any destination host");
				extNaclC.permit.pim.host["Hostname or A.B.C.D"].addSC("host", "A single destination host");
	extNaclC.permit.addSC("tcp", "Transmission Control Protocol");
		extNaclC.permit.tcp.addSC("A.B.C.D", "Source address");
			extNaclC.permit.tcp["A.B.C.D"].addSC("A.B.C.D", "Source wildcard bits");
				extNaclC.permit.tcp["A.B.C.D"]["A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.permit.tcp["A.B.C.D"]["A.B.C.D"].addSC("lt", "Match only packets with a lower port number");
				extNaclC.permit.tcp["A.B.C.D"]["A.B.C.D"].addSC("range", "Match only packets in the range of port numbers");
		extNaclC.permit.tcp.addSC("any", "Any source host");
			extNaclC.permit.tcp.any.addSC("A.B.C.D", "Destination address");
				extNaclC.permit.tcp.any["A.B.C.D"].addSC("A.B.C.D", "Destination wildcard bits");
			extNaclC.permit.tcp.any.addSC("any", "Any destination host");
				extNaclC.permit.tcp.any.any.addSC("ack", "Match on the ACK bit");
				extNaclC.permit.tcp.any.any.addSC("established", "Match established connections");
			extNaclC.permit.tcp.any.addSC("eq", "Match only packets on a given port number");
				extNaclC.permit.tcp.any["eq"].addSC("<0-65535>", "Port number");
				extNaclC.permit.tcp.any["eq"].addSC("bgp", "Border Gateway Protocol (179)");
				extNaclC.permit.tcp.any["eq"].addSC("login", "Login (rlogin, 513)");
				extNaclC.permit.tcp.any["eq"].addSC("lpd", "Printer service (515)");
			extNaclC.permit.tcp.any.addSC("gt", "Match only packets with a greater port number");
				extNaclC.permit.tcp.any["gt"].addSC("<0-65535>", "Port number");
				extNaclC.permit.tcp.any["gt"].addSC("bgp", "Border Gateway Protocol (179)");
				extNaclC.permit.tcp.any["gt"].addSC("chargen", "Character generator (19)");
				extNaclC.permit.tcp.any["gt"].addSC("discard", "Discard (9)");
				extNaclC.permit.tcp.any["gt"].addSC("www", "World Wide Web (HTTP, 80)");
			extNaclC.permit.tcp.any.addSC("host", "A single destination host");
				extNaclC.permit.tcp.any.host.addSC("Hostname or A.B.C.D", "Destination address");
			extNaclC.permit.tcp.any.addSC("lt", "Match only packets with a lower port number");
				extNaclC.permit.tcp.any["lt"].addSC("<0-65535>", "Port number");
				extNaclC.permit.tcp.any["lt"].addSC("bgp", "Border Gateway Protocol (179)");
				extNaclC.permit.tcp.any["lt"].addSC("smtp", "Simple Mail Transport Protocol (25)");
				extNaclC.permit.tcp.any["lt"].addSC("time", "Time (37)");
				extNaclC.permit.tcp.any["lt"].addSC("whois", "Nicname (43)");
				extNaclC.permit.tcp.any["lt"].addSC("www", "World Wide Web (HTTP, 80)");
			extNaclC.permit.tcp.any.addSC("neq", "Match only packets not on a given port number");
				extNaclC.permit.tcp.any.neq.addSC("<0-65535>", "Port number");
				extNaclC.permit.tcp.any.neq.addSC("www", "World Wide Web (HTTP, 80)");
			extNaclC.permit.tcp.any.addSC("range", "Match only packets in the range of port numbers");
				extNaclC.permit.tcp.any.range.addSC("<0-65535>", "Port number");
				extNaclC.permit.tcp.any.range.addSC("bgp", "Border Gateway Protocol (179)");
		extNaclC.permit.tcp.addSC("host", "A single source host");
			extNaclC.permit.tcp.host.addSC("Hostname or A.B.C.D", "Source address");
				extNaclC.permit.tcp.host["Hostname or A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.permit.tcp.host["Hostname or A.B.C.D"].addSC("range", "Match only packets in the range of port numbers");
	extNaclC.permit.addSC("udp", "User Datagram Protocol");
		extNaclC.permit.udp.addSC("A.B.C.D", "Source address");
			extNaclC.permit.udp["A.B.C.D"].addSC("A.B.C.D", "Source wildcard bits");
				extNaclC.permit.udp["A.B.C.D"]["A.B.C.D"].addSC("A.B.C.D", "Destination address");
				extNaclC.permit.udp["A.B.C.D"]["A.B.C.D"].addSC("any", "Any destination host");
		extNaclC.permit.udp.addSC("any", "Any source host");
			extNaclC.permit.udp.any.addSC("A.B.C.D", "Destination address");
				extNaclC.permit.udp.any["A.B.C.D"].addSC("A.B.C.D", "Destination wildcard bits");
			extNaclC.permit.udp.any.addSC("any", "Any destination host");
			extNaclC.permit.udp.any.addSC("eq", "Match only packets on a given port number");
				extNaclC.permit.udp.any["eq"].addSC("<0-65535>", "Port number");
				extNaclC.permit.udp.any["eq"].addSC("biff", "Biff (mail notification, comsat, 512)");
				extNaclC.permit.udp.any["eq"].addSC("who", "Who service (rwho, 513)");
			extNaclC.permit.udp.any.addSC("gt", "Match only packets with a greater port number");
				extNaclC.permit.udp.any["gt"].addSC("<0-65535>", "Port number");
				extNaclC.permit.udp.any["gt"].addSC("who", "Who service (rwho, 513)");
			extNaclC.permit.udp.any.addSC("host", "A single destination host");
				extNaclC.permit.udp.any.host.addSC("Hostname or A.B.C.D", "Destination address");
			extNaclC.permit.udp.any.addSC("lt", "Match only packets with a lower port number");
				extNaclC.permit.udp.any["lt"].addSC("<0-65535>", "Port number");
				extNaclC.permit.udp.any["lt"].addSC("echo", "Echo (7)");
			extNaclC.permit.udp.any.addSC("neq", "Match only packets not on a given port number");
				extNaclC.permit.udp.any.neq.addSC("<0-65535>", "Port number");
				extNaclC.permit.udp.any.neq.addSC("who", "Who service (rwho, 513)");
			extNaclC.permit.udp.any.addSC("range", "Match only packets in the range of port numbers");
				extNaclC.permit.udp.any.range.addSC("<0-65535>", "Port number");
				extNaclC.permit.udp.any.range.addSC("talk", "Talk (517)");
		extNaclC.permit.udp.addSC("host", "A single source host");
			extNaclC.permit.udp.host.addSC("Hostname or A.B.C.D", "Source address");
				extNaclC.permit.udp.host["Hostname or A.B.C.D"].addSC("A.B.C.D", "Destination address");
extNaclC.addSC("remark", "Access list entry comment");