summaryrefslogtreecommitdiff
path: root/interface-definitions/include/policy/route-common-rule-ipv6.xml.i
blob: b8fee4b7b0a05f85fc6b8893b5c74eba34dfd57d (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
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
<!-- include start from policy/route-common-rule.xml.i -->
#include <include/policy/route-rule-action.xml.i>
#include <include/generic-description.xml.i>
<leafNode name="disable">
  <properties>
    <help>Option to disable firewall rule</help>
    <valueless/>
  </properties>
</leafNode>
<node name="fragment">
  <properties>
    <help>IP fragment match</help>
  </properties>
  <children>
    <leafNode name="match-frag">
      <properties>
        <help>Second and further fragments of fragmented packets</help>
        <valueless/>
      </properties>
    </leafNode>
    <leafNode name="match-non-frag">
      <properties>
        <help>Head fragments or unfragmented packets</help>
        <valueless/>
      </properties>
    </leafNode>
  </children>
</node>
<node name="ipsec">
  <properties>
    <help>Inbound IPsec packets</help>
  </properties>
  <children>
    <leafNode name="match-ipsec">
      <properties>
        <help>Inbound IPsec packets</help>
        <valueless/>
      </properties>
    </leafNode>
    <leafNode name="match-none">
      <properties>
        <help>Inbound non-IPsec packets</help>
        <valueless/>
      </properties>
    </leafNode>
  </children>
</node>
<node name="limit">
  <properties>
    <help>Rate limit using a token bucket filter</help>
  </properties>
  <children>
    <leafNode name="burst">
      <properties>
        <help>Maximum number of packets to allow in excess of rate</help>
        <valueHelp>
          <format>u32:0-4294967295</format>
          <description>Maximum number of packets to allow in excess of rate</description>
        </valueHelp>
        <constraint>
          <validator name="numeric" argument="--range 0-4294967295"/>
        </constraint>
      </properties>
    </leafNode>
    <leafNode name="rate">
      <properties>
        <help>Maximum average matching rate</help>
        <valueHelp>
          <format>u32:0-4294967295</format>
          <description>Maximum average matching rate</description>
        </valueHelp>
        <constraint>
          <validator name="numeric" argument="--range 0-4294967295"/>
        </constraint>
      </properties>
    </leafNode>
  </children>
</node>
<leafNode name="log">
  <properties>
    <help>Option to log packets matching rule</help>
    <completionHelp>
      <list>enable disable</list>
    </completionHelp>
    <valueHelp>
      <format>enable</format>
      <description>Enable log</description>
    </valueHelp>
    <valueHelp>
      <format>disable</format>
      <description>Disable log</description>
    </valueHelp>
    <constraint>
      <regex>^(enable|disable)$</regex>
    </constraint>
  </properties>
</leafNode>
<leafNode name="protocol">
  <properties>
    <help>Protocol to match (protocol name, number, or "all")</help>
    <completionHelp>
      <script>cat /etc/protocols | sed -e '/^#.*/d' | awk '{ print $1 }'</script>
    </completionHelp>
    <valueHelp>
      <format>all</format>
      <description>All IP protocols</description>
    </valueHelp>
    <valueHelp>
      <format>tcp_udp</format>
      <description>Both TCP and UDP</description>
    </valueHelp>
    <valueHelp>
      <format>0-255</format>
      <description>IP protocol number</description>
    </valueHelp>
    <valueHelp>
      <format>!&lt;protocol&gt;</format>
      <description>IP protocol number</description>
    </valueHelp>
    <constraint>
      <validator name="ip-protocol"/>
    </constraint>
  </properties>
  <defaultValue>all</defaultValue>
</leafNode>
<node name="recent">
  <properties>
    <help>Parameters for matching recently seen sources</help>
  </properties>
  <children>
    <leafNode name="count">
      <properties>
        <help>Source addresses seen more than N times</help>
        <valueHelp>
          <format>u32:1-255</format>
          <description>Source addresses seen more than N times</description>
        </valueHelp>
        <constraint>
          <validator name="numeric" argument="--range 1-255"/>
        </constraint>
      </properties>
    </leafNode>
    <leafNode name="time">
      <properties>
        <help>Source addresses seen in the last N seconds</help>
        <valueHelp>
          <format>u32:0-4294967295</format>
          <description>Source addresses seen in the last N seconds</description>
        </valueHelp>
        <constraint>
          <validator name="numeric" argument="--range 0-4294967295"/>
        </constraint>
      </properties>
    </leafNode>
  </children>
</node>
<node name="set">
  <properties>
    <help>Packet modifications</help>
  </properties>
  <children>
    <leafNode name="dscp">
      <properties>
        <help>Packet Differentiated Services Codepoint (DSCP)</help>
        <valueHelp>
          <format>u32:0-63</format>
          <description>DSCP number</description>
        </valueHelp>
        <constraint>
          <validator name="numeric" argument="--range 0-63"/>
        </constraint>
      </properties>
    </leafNode>
    <leafNode name="mark">
      <properties>
        <help>Packet marking</help>
        <valueHelp>
          <format>u32:1-2147483647</format>
          <description>Packet marking</description>
        </valueHelp>
        <constraint>
          <validator name="numeric" argument="--range 1-2147483647"/>
        </constraint>
      </properties>
    </leafNode>
    <leafNode name="table">
      <properties>
        <help>Routing table to forward packet with</help>
        <valueHelp>
          <format>u32:1-200</format>
          <description>Table number</description>
        </valueHelp>
        <valueHelp>
          <format>main</format>
          <description>Main table</description>
        </valueHelp>
        <constraint>
          <validator name="numeric" argument="--range 1-200"/>
          <regex>^(main)$</regex>
        </constraint>
      </properties>
    </leafNode>
    <leafNode name="tcp-mss">
      <properties>
        <help>TCP Maximum Segment Size</help>
        <valueHelp>
          <format>u32:500-1460</format>
          <description>Explicitly set TCP MSS value</description>
        </valueHelp>
        <constraint>
          <validator name="numeric" argument="--range 500-1460"/>
        </constraint>
      </properties>
    </leafNode>
  </children>
</node>
<node name="source">
  <properties>
    <help>Source parameters</help>
  </properties>
  <children>
    #include <include/firewall/address-ipv6.xml.i>
    #include <include/firewall/source-destination-group.xml.i>
    <leafNode name="mac-address">
      <properties>
        <help>Source MAC address</help>
        <valueHelp>
          <format>&lt;MAC address&gt;</format>
          <description>MAC address to match</description>
        </valueHelp>
        <valueHelp>
          <format>!&lt;MAC address&gt;</format>
          <description>Match everything except the specified MAC address</description>
        </valueHelp>
      </properties>
    </leafNode>
    #include <include/firewall/port.xml.i>
  </children>
</node>
<node name="state">
  <properties>
    <help>Session state</help>
  </properties>
  <children>
    <leafNode name="established">
      <properties>
        <help>Established state</help>
        <completionHelp>
          <list>enable disable</list>
        </completionHelp>
        <valueHelp>
          <format>enable</format>
          <description>Enable</description>
        </valueHelp>
        <valueHelp>
          <format>disable</format>
          <description>Disable</description>
        </valueHelp>
        <constraint>
          <regex>^(enable|disable)$</regex>
        </constraint>
      </properties>
    </leafNode>
    <leafNode name="invalid">
      <properties>
        <help>Invalid state</help>
        <completionHelp>
          <list>enable disable</list>
        </completionHelp>
        <valueHelp>
          <format>enable</format>
          <description>Enable</description>
        </valueHelp>
        <valueHelp>
          <format>disable</format>
          <description>Disable</description>
        </valueHelp>
        <constraint>
          <regex>^(enable|disable)$</regex>
        </constraint>
      </properties>
    </leafNode>
    <leafNode name="new">
      <properties>
        <help>New state</help>
        <completionHelp>
          <list>enable disable</list>
        </completionHelp>
        <valueHelp>
          <format>enable</format>
          <description>Enable</description>
        </valueHelp>
        <valueHelp>
          <format>disable</format>
          <description>Disable</description>
        </valueHelp>
        <constraint>
          <regex>^(enable|disable)$</regex>
        </constraint>
      </properties>
    </leafNode>
    <leafNode name="related">
      <properties>
        <help>Related state</help>
        <completionHelp>
          <list>enable disable</list>
        </completionHelp>
        <valueHelp>
          <format>enable</format>
          <description>Enable</description>
        </valueHelp>
        <valueHelp>
          <format>disable</format>
          <description>Disable</description>
        </valueHelp>
        <constraint>
          <regex>^(enable|disable)$</regex>
        </constraint>
      </properties>
    </leafNode>
  </children>
</node>
<node name="tcp">
  <properties>
    <help>TCP flags to match</help>
  </properties>
  <children>
    <leafNode name="flags">
      <properties>
        <help>TCP flags to match</help>
        <valueHelp>
          <format>txt</format>
          <description>Multiple comma-separated flags</description>
        </valueHelp>
        <valueHelp>
          <format>syn</format>
          <description>Syncronise flag</description>
        </valueHelp>
        <valueHelp>
          <format>ack</format>
          <description>Acknowledge flag</description>
        </valueHelp>
        <valueHelp>
          <format>fin</format>
          <description>Finish flag</description>
        </valueHelp>
        <valueHelp>
          <format>rst</format>
          <description>Reset flag</description>
        </valueHelp>
        <valueHelp>
          <format>urg</format>
          <description>Urgent flag</description>
        </valueHelp>
        <valueHelp>
          <format>psh</format>
          <description>Push flag</description>
        </valueHelp>
        <valueHelp>
          <format> </format>
          <description>\n When specifying more than one flag, flags should be comma-separated.\n For example: value of 'SYN,!ACK,!FIN,!RST' will only match packets with\n the SYN flag set, and the ACK, FIN and RST flags unset</description>
        </valueHelp>
        <completionHelp>
          <list>syn ack fin rst urg psh</list>
        </completionHelp>
        <constraint>
          <validator name="tcp-flag"/>
        </constraint>
      </properties>
    </leafNode>
  </children>
</node>
<node name="time">
  <properties>
    <help>Time to match rule</help>
  </properties>
  <children>
    <leafNode name="monthdays">
      <properties>
        <help>Monthdays to match rule on</help>
      </properties>
    </leafNode>
    <leafNode name="startdate">
      <properties>
        <help>Date to start matching rule</help>
      </properties>
    </leafNode>
    <leafNode name="starttime">
      <properties>
        <help>Time of day to start matching rule</help>
      </properties>
    </leafNode>
    <leafNode name="stopdate">
      <properties>
        <help>Date to stop matching rule</help>
      </properties>
    </leafNode>
    <leafNode name="stoptime">
      <properties>
        <help>Time of day to stop matching rule</help>
      </properties>
    </leafNode>
    <leafNode name="utc">
      <properties>
        <help>Interpret times for startdate, stopdate, starttime and stoptime to be UTC</help>
        <valueless/>
      </properties>
    </leafNode>
    <leafNode name="weekdays">
      <properties>
        <help>Weekdays to match rule on</help>
      </properties>
    </leafNode>
  </children>
</node>
<node name="icmpv6">
  <properties>
    <help>ICMPv6 type and code information</help>
  </properties>
  <children>
    <leafNode name="type">
      <properties>
        <help>ICMP type-name</help>
        <completionHelp>
          <list>any echo-reply pong destination-unreachable network-unreachable host-unreachable protocol-unreachable port-unreachable fragmentation-needed source-route-failed network-unknown host-unknown network-prohibited host-prohibited TOS-network-unreachable TOS-host-unreachable communication-prohibited host-precedence-violation precedence-cutoff source-quench redirect network-redirect host-redirect TOS-network-redirect TOS host-redirect echo-request ping router-advertisement router-solicitation time-exceeded ttl-exceeded ttl-zero-during-transit ttl-zero-during-reassembly parameter-problem ip-header-bad required-option-missing timestamp-request timestamp-reply address-mask-request address-mask-reply packet-too-big</list>
        </completionHelp>
        <valueHelp>
          <format>any</format>
          <description>Any ICMP type/code</description>
        </valueHelp>
        <valueHelp>
          <format>echo-reply</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>pong</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>destination-unreachable</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>network-unreachable</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>host-unreachable</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>protocol-unreachable</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>port-unreachable</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>fragmentation-needed</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>source-route-failed</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>network-unknown</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>host-unknown</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>network-prohibited</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>host-prohibited</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>TOS-network-unreachable</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>TOS-host-unreachable</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>communication-prohibited</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>host-precedence-violation</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>precedence-cutoff</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>source-quench</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>redirect</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>network-redirect</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>host-redirect</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>TOS-network-redirect</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>TOS host-redirect</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>echo-request</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>ping</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>router-advertisement</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>router-solicitation</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>time-exceeded</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>ttl-exceeded</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>ttl-zero-during-transit</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>ttl-zero-during-reassembly</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>parameter-problem</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>ip-header-bad</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>required-option-missing</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>timestamp-request</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>timestamp-reply</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>address-mask-request</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>address-mask-reply</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <valueHelp>
          <format>packet-too-big</format>
          <description>ICMP type/code name</description>
        </valueHelp>
        <constraint>
          <regex>^(any|echo-reply|pong|destination-unreachable|network-unreachable|host-unreachable|protocol-unreachable|port-unreachable|fragmentation-needed|source-route-failed|network-unknown|host-unknown|network-prohibited|host-prohibited|TOS-network-unreachable|TOS-host-unreachable|communication-prohibited|host-precedence-violation|precedence-cutoff|source-quench|redirect|network-redirect|host-redirect|TOS-network-redirect|TOS host-redirect|echo-request|ping|router-advertisement|router-solicitation|time-exceeded|ttl-exceeded|ttl-zero-during-transit|ttl-zero-during-reassembly|parameter-problem|ip-header-bad|required-option-missing|timestamp-request|timestamp-reply|address-mask-request|address-mask-reply|packet-too-big)$</regex>
          <validator name="numeric" argument="--range 0-255"/>
        </constraint>
      </properties>
    </leafNode>
  </children>
</node>
<!-- include end -->