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
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
|
---
lastproofread: '2026-04-01'
---
(firewall-ipv6-configuration)=
# IPv6 Firewall Configuration
## Overview
This section covers useful information about IPv6 firewall configuration and
appropriate operation-mode commands.
This section describes the following configuration commands:
```{cfgcmd} set firewall ipv6 ...
```
To learn about the general traffic flow in VyOS firewalls, see {doc}`Firewall </configuration/firewall/index>`.
```none
- set firewall
* ipv6
- forward
+ filter
- input
+ filter
- output
+ filter
+ raw
- prerouting
+ raw
- name
+ custom_name
```
The router first receives all traffic and processes it in the **prerouting**
section.
This stage includes:
- **Firewall Prerouting**: commands found under `set firewall ipv6
prerouting raw ...`
- {doc}`Conntrack Ignore</configuration/system/conntrack>`: `set system
conntrack ignore ipv6...`
- {doc}`Policy Route</configuration/policy/route>`: commands found under
`set policy route6 ...`
- {doc}`Destination NAT</configuration/nat/nat44>`: commands found under
`set nat66 destination ...`
For transit traffic that the router receives and forwards, the base chain is
**forward**. The following diagram shows a simplified packet flow for transit
traffic:
:::{figure} /_static/images/firewall-fwd-packet-flow.webp
:::
Use `set firewall ipv6 forward filter ...` to configure filtering rules for
transit traffic. This command corresponds to stage 5 and is highlighted in red
in the diagram.
For traffic destined to the router, use the **input** chain. For traffic the
router generates, use the **output** chain. The following diagram shows the
packet flow for traffic destined to the router and traffic generated by the
router (starting from circle number 6):
:::{figure} /_static/images/firewall-input-packet-flow.webp
:::
Use `set firewall ipv6 input filter ...` to configure traffic destined to
the router.
Use `set firewall ipv6 output ...` to configure traffic the router generates.
Two sub-chains are available: **filter** and **raw**:
- **Output Prerouting**: `set firewall ipv6 output raw ...`.
As described in **Prerouting**, the firewall processes rules in this
section before the connection tracking subsystem.
- **Output Filter**: `set firewall ipv6 output filter ...`. The firewall
processes rules in this section after the connection tracking subsystem.
:::{note}
**Important note about default-actions:**
If you do not define a default action for a base chain, the system sets
the default action to **accept** for that chain. For custom chains, if you
do not define a default action, the system sets the default-action to
**drop**
:::
Create custom firewall chains using the commands
`set firewall ipv6 name <name> ...`. To use the custom chain, define a
rule with **action jump** and the appropriate **target** in a base chain.
## Firewall - IPv6 Rules
Create firewall rules for firewall filtering. Each rule is numbered and has
an action to apply when the rule is matched. You can specify multiple matching
criteria. Packets go through rules from 1 - 999999, so order is crucial. The
firewall executes the action of the first matching rule.
### Actions
If you define a rule, you must define an action for it. The action tells the
firewall what to do when all criteria for that rule are met.
The action can be :
- `accept`: accept the packet.
- `continue`: continue parsing next rule.
- `drop`: drop the packet.
- `reject`: reject the packet.
- `jump`: jump to another custom chain.
- `return`: Return from the current chain and continue at the next rule
of the last chain.
- `queue`: Enqueue packet to userspace.
- `synproxy`: synproxy the packet.
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> action [accept | continue | drop | jump | queue | reject | return | synproxy]
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> action [accept | continue | drop | jump | queue | reject | return | synproxy]
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> action [accept | continue | drop | jump | queue | reject | return]
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> action [accept | continue | drop | jump | queue | reject | return]
This required setting defines the action of the current rule. If you set
the action to jump, you must also define a jump-target.
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> jump-target \<text\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> jump-target \<text\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> jump-target \<text\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> jump-target \<text\>
Use this command only when action is set to ``jump``. Specify the jump
target.
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> queue \<0-65535\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> queue \<0-65535\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> queue \<0-65535\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> queue \<0-65535\>
Use this command only when action is set to ``queue``. Specify the queue
target. Queue ranges are also supported.
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> queue-options bypass
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> queue-options bypass
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> queue-options bypass
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> queue-options bypass
Use this command only when action is set to ``queue``. This command allows
the packet to go through the firewall when no userspace software is connected
to the queue.
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> queue-options fanout
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> queue-options fanout
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> queue-options fanout
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> queue-options fanout
Use this command only when action is set to ``queue``. This command
distributes packets among multiple queues.
```
Also, **default-action** is an action that takes place whenever a packet does
not match any rule in its chain. For base chains, possible options for
**default-action** are **accept** or **drop**.
```{cfgcmd} set firewall ipv6 forward filter default-action [accept | drop]
```
```{cfgcmd} set firewall ipv6 input filter default-action [accept | drop]
```
```{cfgcmd} set firewall ipv6 output filter default-action [accept | drop]
```
```{cfgcmd} set firewall ipv6 name \<name\> default-action [accept | drop | jump | queue | reject | return]
Set the default action of the rule-set if a packet does not match any rule
criteria. If you set default-action to ``jump``, you must also define
``default-jump-target``. For base chains, you can only set the default
action to ``accept`` or ``drop``. For custom chains, more actions are
available.
```
```{cfgcmd} set firewall ipv6 name \<name\> default-jump-target \<text\>
To be used only when ``default-action`` is set to ``jump``. Use this
command to specify the jump target for the default rule.
```
:::{note}
**Important note about default-actions:**
If you do not define the default action for a base chain, the system sets
the default action to **accept** for that chain. For custom chains, if you
do not define a default action, the system sets the default-action to
**drop**.
:::
### Firewall Logs
You can enable logging for each firewall rule. When enabled, you can also
define other log options.
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> log
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> log
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> log
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> log
Enable logging for matched packets. If this configuration command is not
present, logging is disabled.
```
```{cfgcmd} set firewall ipv6 forward filter default-log
```
```{cfgcmd} set firewall ipv6 input filter default-log
```
```{cfgcmd} set firewall ipv6 output filter default-log
```
```{cfgcmd} set firewall ipv6 name \<name\> default-log
Use this command to enable the logging of the default action on
the specified chain.
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> log-options level [emerg | alert | crit | err | warn | notice | info | debug]
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> log-options level [emerg | alert | crit | err | warn | notice | info | debug]
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> log-options level [emerg | alert | crit | err | warn | notice | info | debug]
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> log-options level [emerg | alert | crit | err | warn | notice | info | debug]
Define log-level. Only applicable if rule log is enabled.
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> log-options group \<0-65535\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> log-options group \<0-65535\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> log-options group \<0-65535\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> log-options group \<0-65535\>
Define the log group to send messages to. Only applicable if rule log is
enabled.
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> log-options snapshot-length \<0-9000\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> log-options snapshot-length \<0-9000\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> log-options snapshot-length \<0-9000\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> log-options snapshot-length \<0-9000\>
Define the length of packet payload to include in a netlink message. Only
applicable when rule logging is enabled and log group is defined.
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> log-options queue-threshold \<0-65535\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> log-options queue-threshold \<0-65535\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> log-options queue-threshold \<0-65535\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> log-options queue-threshold \<0-65535\>
Define the number of packets to queue inside the kernel before sending them
to userspace. Only applicable when rule logging is enabled and log group is
defined.
```
### Firewall Description
For reference, you can define descriptions on every rule and custom chain.
```{cfgcmd} set firewall ipv6 name \<name\> description \<text\>
Provide a rule-set description to a custom firewall chain.
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> description \<text\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> description \<text\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> description \<text\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> description \<text\>
Provide a description for each rule.
```
### Rule Status
New rules are enabled by default. In some cases, you may want to disable a
rule rather than remove it.
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> disable
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> disable
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> disable
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> disable
Command for disabling a rule but keep it in the configuration.
```
### Matching criteria
There are a lot of matching criteria against which the packet can be tested.
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> connection-status nat [destination | source]
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> connection-status nat [destination | source]
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> connection-status nat [destination | source]
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> connection-status nat [destination | source]
Match packets based on NAT connection status.
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> connection-mark \<1-2147483647\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> connection-mark \<1-2147483647\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> connection-mark \<1-2147483647\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> connection-mark \<1-2147483647\>
Match packets based on connection mark.
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> source address [address | addressrange | CIDR]
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> source address [address | addressrange | CIDR]
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> source address [address | addressrange | CIDR]
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> source address [address | addressrange | CIDR]
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> destination address [address | addressrange | CIDR]
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> destination address [address | addressrange | CIDR]
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> destination address [address | addressrange | CIDR]
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> destination address [address | addressrange | CIDR]
Match based on source or destination address. This is similar to network
groups, but you can negate the matching addresses here.
:::{code-block} none
set firewall ipv6 name FOO rule 100 source address 2001:db8::202
:::
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> source address-mask [address]
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> source address-mask [address]
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> source address-mask [address]
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> source address-mask [address]
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> destination address-mask [address]
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> destination address-mask [address]
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> destination address-mask [address]
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> destination address-mask [address]
Apply an arbitrary netmask to mask addresses and match only a specific
portion. This is useful for IPv6 because rules remain valid when the IPv6
prefix changes if the host portion of the system's IPv6 address is static.
Examples include SLAAC and tokenised IPv6 addresses
This function works for both individual addresses and address groups.
:::{code-block} none
# Match any IPv6 address with the suffix ::0000:0000:0000:beef
set firewall ipv6 forward filter rule 100 destination address ::beef
set firewall ipv6 forward filter rule 100 destination address-mask ::ffff:ffff:ffff:ffff
# Address groups
set firewall group ipv6-address-group WEBSERVERS address ::1000
set firewall group ipv6-address-group WEBSERVERS address ::2000
set firewall ipv6 forward filter rule 200 source group address-group WEBSERVERS
set firewall ipv6 forward filter rule 200 source address-mask ::ffff:ffff:ffff:ffff
:::
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> source fqdn \<fqdn\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> source fqdn \<fqdn\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> source fqdn \<fqdn\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> source fqdn \<fqdn\>
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> destination fqdn \<fqdn\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> destination fqdn \<fqdn\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> destination fqdn \<fqdn\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> destination fqdn \<fqdn\>
Specify a Fully Qualified Domain Name as source or destination to match.
Ensure that the router can resolve the DNS query.
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> source geoip country-code \<country\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> source geoip country-code \<country\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> source geoip country-code \<country\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> source geoip country-code \<country\>
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> source geoip asn \<1-4294967294\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> source geoip asn \<1-4294967294\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> source geoip asn \<1-4294967294\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> source geoip asn \<1-4294967294\>
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> destination geoip country-code \<country\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> destination geoip country-code \<country\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> destination geoip country-code \<country\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> destination geoip country-code \<country\>
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> destination geoip asn \<1-4294967294\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> destination geoip asn \<1-4294967294\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> destination geoip asn \<1-4294967294\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> destination geoip asn \<1-4294967294\>
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> source geoip inverse-match
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> source geoip inverse-match
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> source geoip inverse-match
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> source geoip inverse-match
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> destination geoip inverse-match
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> destination geoip inverse-match
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> destination geoip inverse-match
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> destination geoip inverse-match
Match IP addresses based on their geolocation. For more information, see
GeoIP matching.
Use country-code or asn to match based on geography or origin network.
Use inverse-match to match anything except the specified country code or ASN.
```
DB-IP.com provides data under CC-BY-4.0 license. Attribution is required and
redistribution is permitted, allowing VyOS to include a database in images
(approximately 3 MB compressed). The package includes a cron script that you
can manually call through op-mode update geoip to keep the database and rules
updated.
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> source mac-address \<mac-address\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> source mac-address \<mac-address\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> source mac-address \<mac-address\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> source mac-address \<mac-address\>
You can specify only a source MAC address to match.
:::{code-block} none
set firewall ipv6 input filter rule 100 source mac-address 00:53:00:11:22:33
set firewall ipv6 input filter rule 101 source mac-address !00:53:00:aa:12:34
:::
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> source port [1-65535 | portname | start-end]
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> source port [1-65535 | portname | start-end]
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> source port [1-65535 | portname | start-end]
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> source port [1-65535 | portname | start-end]
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> destination port [1-65535 | portname | start-end]
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> destination port [1-65535 | portname | start-end]
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> destination port [1-65535 | portname | start-end]
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> destination port [1-65535 | portname | start-end]
Specify a port by number or by name as defined in ``/etc/services``.
:::{code-block} none
set firewall ipv6 forward filter rule 10 source port '22'
set firewall ipv6 forward filter rule 11 source port '!http'
set firewall ipv6 forward filter rule 12 source port 'https'
:::
Multiple source ports can be specified as a comma-separated list.
The whole list can also be "negated" using ``!``. For example:
:::{code-block} none
set firewall ipv6 forward filter rule 10 source port '!22,https,3333-3338'
:::
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> source group address-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> source group address-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> source group address-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> source group address-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> destination group address-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> destination group address-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> destination group address-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> destination group address-group \<name | !name\>
Specify an address group. You can prepend the character ``!`` to invert the
matching criteria.
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> source group dynamic-address-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> source group dynamic-address-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> source group dynamic-address-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> source group dynamic-address-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> destination group dynamic-address-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> destination group dynamic-address-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> destination group dynamic-address-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> destination group dynamic-address-group \<name | !name\>
Specify a dynamic address group. You can prepend the character ``!`` to
invert the matching criteria.
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> source group network-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> source group network-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> source group network-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> source group network-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> destination group network-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> destination group network-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> destination group network-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> destination group network-group \<name | !name\>
Specify a network group. You can prepend the character ``!`` to invert the
matching criteria.
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> source group port-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> source group port-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> source group port-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> source group port-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> destination group port-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> destination group port-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> destination group port-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> destination group port-group \<name | !name\>
Specify a port group. You can prepend the character ``!`` to invert the
matching criteria.
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> source group domain-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> source group domain-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> source group domain-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> source group domain-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> destination group domain-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> destination group domain-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> destination group domain-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> destination group domain-group \<name | !name\>
Specify a domain group. You can prepend the character ``!`` to invert the
matching criteria.
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> source group mac-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> source group mac-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> source group mac-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> source group mac-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> destination group mac-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> destination group mac-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> destination group mac-group \<name | !name\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> destination group mac-group \<name | !name\>
Specify a MAC group. You can prepend the character ``!`` to invert the
matching criteria.
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> dscp [0-63 | start-end]
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> dscp [0-63 | start-end]
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> dscp [0-63 | start-end]
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> dscp [0-63 | start-end]
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> dscp-exclude [0-63 | start-end]
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> dscp-exclude [0-63 | start-end]
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> dscp-exclude [0-63 | start-end]
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> dscp-exclude [0-63 | start-end]
Match based on dscp value.
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> fragment [match-frag | match-non-frag]
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> fragment [match-frag | match-non-frag]
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> fragment [match-frag | match-non-frag]
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> fragment [match-frag | match-non-frag]
Match packets based on fragmentation.
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> icmpv6 [code | type] \<0-255\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> icmpv6 [code | type] \<0-255\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> icmpv6 [code | type] \<0-255\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> icmpv6 [code | type] \<0-255\>
Match packets based on ICMP or ICMPv6 code and type.
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> icmpv6 type-name \<text\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> icmpv6 type-name \<text\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> icmpv6 type-name \<text\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> icmpv6 type-name \<text\>
Match based on ICMPv6 type-name. Press **Tab** for information about
supported **type-name** criteria.
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> inbound-interface name \<iface\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> inbound-interface name \<iface\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> inbound-interface name \<iface\>
Match based on inbound interface. You can use the wildcard ``*``. For
example: ``eth2*``. You can prepend the character ``!`` to invert the
matching criteria. For example ``!eth2``
```
:::{note}
If an interface is attached to a non-default VRF, when using
**inbound-interface**, use the VRF name. For example:
`set firewall ipv6 forward filter rule 10 inbound-interface name MGMT`
:::
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> inbound-interface group \<iface_group\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> inbound-interface group \<iface_group\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> inbound-interface group \<iface_group\>
Match based on the inbound interface group. You can prepend the character
``!`` to invert the matching criteria. For example ``!IFACE_GROUP``
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> outbound-interface name \<iface\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> outbound-interface name \<iface\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> outbound-interface name \<iface\>
Match based on outbound interface. You can use the wildcard ``*``. For
example: ``eth2*``. You can prepend the character ``!`` to invert the
matching criteria. For example ``!eth2``
```
:::{note}
If an interface is attached to a non-default VRF, when using
**outbound-interface**, use the physical interface name. For example:
`set firewall ipv6 forward filter rule 10 outbound-interface name eth0`
:::
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> outbound-interface group \<iface_group\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> outbound-interface group \<iface_group\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> outbound-interface group \<iface_group\>
Match based on outbound interface group. You can prepend the character ``!``
to invert the matching criteria. For example ``!IFACE_GROUP``
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> ipsec [match-ipsec-in | match-ipsec-out | match-none-in | match-none-out]
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> ipsec [match-ipsec-in | match-none-in]
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> ipsec [match-ipsec-out | match-none-out]
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> ipsec [match-ipsec-in | match-ipsec-out | match-none-in | match-none-out]
Match packets based on IPsec.
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> limit burst \<0-4294967295\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> limit burst \<0-4294967295\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> limit burst \<0-4294967295\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> limit burst \<0-4294967295\>
Match based on the maximum number of packets allowed to exceed the rate
limit.
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> limit rate \<text\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> limit rate \<text\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> limit rate \<text\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> limit rate \<text\>
Match based on the maximum average rate, specified as ``integer/unit``.
For example, specify ``5/minutes``.
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> packet-length \<text\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> packet-length \<text\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> packet-length \<text\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> packet-length \<text\>
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> packet-length-exclude \<text\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> packet-length-exclude \<text\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> packet-length-exclude \<text\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> packet-length-exclude \<text\>
Match based on packet length. You can specify multiple values from 1 to
65535 and ranges.
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> packet-type [broadcast | host | multicast | other]
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> packet-type [broadcast | host | multicast | other]
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> packet-type [broadcast | host | multicast | other]
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> packet-type [broadcast | host | multicast | other]
Match based on packet type.
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> protocol [\<text\> | \<0-255\> | all | tcp_udp]
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> protocol [\<text\> | \<0-255\> | all | tcp_udp]
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> protocol [\<text\> | \<0-255\> | all | tcp_udp]
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> protocol [\<text\> | \<0-255\> | all | tcp_udp]
Match based on protocol number or name as defined in ``/etc/protocols``.
Specify ``all`` for all protocols and ``tcp_udp`` for TCP and UDP packets.
Prepend ``!`` to negate the protocol selection.
:::{code-block} none
set firewall ipv6 input filter rule 10 protocol tcp
:::
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> recent count \<1-255\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> recent count \<1-255\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> recent count \<1-255\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> recent count \<1-255\>
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> recent time [second | minute | hour]
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> recent time [second | minute | hour]
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> recent time [second | minute | hour]
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> recent time [second | minute | hour]
Match packets based on recently seen sources.
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> tcp flags [not] \<text\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> tcp flags [not] \<text\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> tcp flags [not] \<text\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> tcp flags [not] \<text\>
Allowed values for TCP flags: ``ack``, ``cwr``, ``ecn``, ``fin``, ``psh``,
``rst``, ``syn``, and ``urg``. You can specify multiple values. To invert
the selection, use ``not``, as shown in the following example.
:::{code-block} none
set firewall ipv6 input filter rule 10 tcp flags 'ack'
set firewall ipv6 input filter rule 12 tcp flags 'syn'
set firewall ipv6 input filter rule 13 tcp flags not 'fin'
:::
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> state [established | invalid | new | related]
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> state [established | invalid | new | related]
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> state [established | invalid | new | related]
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> state [established | invalid | new | related]
Match based on packet state.
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> time startdate \<text\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> time startdate \<text\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> time startdate \<text\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> time startdate \<text\>
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> time starttime \<text\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> time starttime \<text\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> time starttime \<text\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> time starttime \<text\>
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> time stopdate \<text\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> time stopdate \<text\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> time stopdate \<text\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> time stopdate \<text\>
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> time stoptime \<text\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> time stoptime \<text\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> time stoptime \<text\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> time stoptime \<text\>
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> time weekdays \<text\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> time weekdays \<text\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> time weekdays \<text\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> time weekdays \<text\>
Match packets based on time criteria.
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> hop-limit \<eq | gt | lt\> \<0-255\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> hop-limit \<eq | gt | lt\> \<0-255\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> hop-limit \<eq | gt | lt\> \<0-255\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> hop-limit \<eq | gt | lt\> \<0-255\>
Match the hop-limit parameter. Use ``eq`` for equal, ``gt`` for greater than,
and ``lt`` for less than.
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> recent count \<1-255\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> recent count \<1-255\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> recent count \<1-255\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> recent count \<1-255\>
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> recent time \<second | minute | hour\>
```
```{cfgcmd} set firewall ipv6 input filter rule \<1-999999\> recent time \<second | minute | hour\>
```
```{cfgcmd} set firewall ipv6 output filter rule \<1-999999\> recent time \<second | minute | hour\>
```
```{cfgcmd} set firewall ipv6 name \<name\> rule \<1-999999\> recent time \<second | minute | hour\>
Match when the specified number of connections occur within the specified
time period. Use these criteria to block brute-force attempts.
```
### Packet Modifications
The firewall can modify packets before sending them.
This feature provides more flexibility for packet handling.
```{cfgcmd} set firewall ipv6 prerouting raw rule \<1-999999\> set dscp \<0-63\>
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> set dscp \<0-63\>
```
```{cfgcmd} set firewall ipv6 output [filter | raw] rule \<1-999999\> set dscp \<0-63\>
Set a specific value of Differentiated Services Codepoint (DSCP).
```
```{cfgcmd} set firewall ipv6 prerouting raw rule \<1-999999\> set mark \<1-2147483647\>
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> set mark \<1-2147483647\>
```
```{cfgcmd} set firewall ipv6 output [filter | raw] rule \<1-999999\> set mark \<1-2147483647\>
Set a specific packet mark value.
```
```{cfgcmd} set firewall ipv6 prerouting raw rule \<1-999999\> set tcp-mss \<500-1460\>
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> set tcp-mss \<500-1460\>
```
```{cfgcmd} set firewall ipv6 output [filter | raw] rule \<1-999999\> set tcp-mss \<500-1460\>
Set the TCP-MSS (TCP maximum segment size) for the connection.
```
```{cfgcmd} set firewall ipv6 prerouting raw rule \<1-999999\> set hop-limit \<0-255\>
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> set hop-limit \<0-255\>
```
```{cfgcmd} set firewall ipv6 output [filter | raw] rule \<1-999999\> set hop-limit \<0-255\>
Set hop limit value.
```
```{cfgcmd} set firewall ipv6 forward filter rule \<1-999999\> set connection-mark \<0-2147483647\>
```
```{cfgcmd} set firewall ipv6 output [filter | raw] rule \<1-999999\> set connection-mark \<0-2147483647\>
Set connection mark value.
```
## Synproxy
Synproxy connections
```{cfgcmd} set firewall ipv6 [input | forward] filter rule \<1-999999\> action synproxy
```
```{cfgcmd} set firewall ipv6 [input | forward] filter rule \<1-999999\> protocol tcp
```
```{cfgcmd} set firewall ipv6 [input | forward] filter rule \<1-999999\> synproxy tcp mss \<501-65535\>
Set the TCP MSS (maximum segment size) for the connection.
```
```{cfgcmd} set firewall ipv6 [input | forward] filter rule \<1-999999\> synproxy tcp window-scale \<1-14\>
Set the window scale factor for TCP window scaling.
```
### Example synproxy
Requirements to enable synproxy:
- Traffic must be symmetric
- Synproxy relies on syncookies and TCP timestamps, ensure these are enabled
- Disable conntrack loose track option
```none
set system sysctl parameter net.ipv4.tcp_timestamps value '1'
set system conntrack tcp loose disable
set system conntrack ignore ipv6 rule 10 destination port '8080'
set system conntrack ignore ipv6 rule 10 protocol 'tcp'
set system conntrack ignore ipv6 rule 10 tcp flags syn
set firewall global-options syn-cookies 'enable'
set firewall ipv6 input filter rule 10 action 'synproxy'
set firewall ipv6 input filter rule 10 destination port '8080'
set firewall ipv6 input filter rule 10 inbound-interface name 'eth1'
set firewall ipv6 input filter rule 10 protocol 'tcp'
set firewall ipv6 input filter rule 10 synproxy tcp mss '1460'
set firewall ipv6 input filter rule 10 synproxy tcp window-scale '7'
set firewall ipv6 input filter rule 1000 action 'drop'
set firewall ipv6 input filter rule 1000 state invalid
```
## Operation-mode Firewall
### Rule-set overview
```{opcmd} show firewall
Show a basic firewall overview for all rule-sets, not only for IPv6:
:::{code-block} none
vyos@vyos:~$ show firewall
Rulesets Information
---------------------------------
IPv4 Firewall "forward filter"
Rule Action Protocol Packets Bytes Conditions
------- -------- ---------- --------- ------- -----------------------------------------
5 jump all 0 0 iifname "eth1" jump NAME_VyOS_MANAGEMENT
10 jump all 0 0 oifname "eth1" jump NAME_WAN_IN
15 jump all 0 0 iifname "eth3" jump NAME_WAN_IN
default accept all
---------------------------------
IPv4 Firewall "name VyOS_MANAGEMENT"
Rule Action Protocol Packets Bytes Conditions
------- -------- ---------- --------- ------- --------------------------------
5 accept all 0 0 ct state established accept
10 drop all 0 0 ct state invalid
20 accept all 0 0 ip saddr @A_GOOD_GUYS accept
30 accept all 0 0 ip saddr @N_ENTIRE_RANGE accept
40 accept all 0 0 ip saddr @A_VyOS_SERVERS accept
50 accept icmp 0 0 meta l4proto icmp accept
default drop all 0 0
---------------------------------
IPv6 Firewall "forward filter"
Rule Action Protocol
------- -------- ----------
5 jump all
10 jump all
15 jump all
default accept all
---------------------------------
IPv6 Firewall "input filter"
Rule Action Protocol
------- -------- ----------
5 jump all
default accept all
---------------------------------
IPv6 Firewall "ipv6_name IPV6-VyOS_MANAGEMENT"
Rule Action Protocol
------- -------- ----------
5 accept all
10 drop all
20 accept all
30 accept all
40 accept all
50 accept ipv6-icmp
default drop all
:::
```
```{opcmd} show firewall summary
This will show you a summary of rule-sets and groups
:::{code-block} none
vyos@vyos:~$ show firewall summary
Ruleset Summary
IPv6 Ruleset:
Ruleset Hook Ruleset Priority Description
-------------- -------------------- -------------------------
forward filter
input filter
ipv6_name IPV6-VyOS_MANAGEMENT
ipv6_name IPV6-WAN_IN PUBLIC_INTERNET
IPv4 Ruleset:
Ruleset Hook Ruleset Priority Description
-------------- ------------------ -------------------------
forward filter
input filter
name VyOS_MANAGEMENT
name WAN_IN PUBLIC_INTERNET
Firewall Groups
Name Type References Members
----------------------- ------------------ ----------------------- ----------------
PBX address_group WAN_IN-100 198.51.100.77
SERVERS address_group WAN_IN-110 192.0.2.10
WAN_IN-111 192.0.2.11
WAN_IN-112 192.0.2.12
WAN_IN-120
WAN_IN-121
WAN_IN-122
SUPPORT address_group VyOS_MANAGEMENT-20 192.168.1.2
WAN_IN-20
PHONE_VPN_SERVERS address_group WAN_IN-160 10.6.32.2
PINGABLE_ADDRESSES address_group WAN_IN-170 192.168.5.2
WAN_IN-171
PBX ipv6_address_group IPV6-WAN_IN-100 2001:db8::1
SERVERS ipv6_address_group IPV6-WAN_IN-110 2001:db8::2
IPV6-WAN_IN-111 2001:db8::3
IPV6-WAN_IN-112 2001:db8::4
IPV6-WAN_IN-120
IPV6-WAN_IN-121
IPV6-WAN_IN-122
SUPPORT ipv6_address_group IPV6-VyOS_MANAGEMENT-20 2001:db8::5
IPV6-WAN_IN-20
:::
```
```{opcmd} show firewall ipv6 [forward | input | output] filter
```
```{opcmd} show firewall ipv6 ipv6-name \<name\>
This command will give an overview of a single rule-set.
:::{code-block} none
vyos@vyos:~$ show firewall ipv6 input filter
Ruleset Information
---------------------------------
ipv6 Firewall "input filter"
Rule Action Protocol Packets Bytes Conditions
------- -------- ---------- --------- ------- ------------------------------------------------------------------------------
10 jump all 13 1456 iifname "eth1" jump NAME6_INP-ETH1
20 accept ipv6-icmp 10 1112 meta l4proto ipv6-icmp iifname "eth0" prefix "[ipv6-INP-filter-20-A]" accept
default accept all 14 1584
vyos@vyos:~$
:::
```
```{opcmd} show firewall ipv6 [forward | input | output] filter rule \<1-999999\>
```
```{opcmd} show firewall ipv6 name \<name\> rule \<1-999999\>
```
```{opcmd} show firewall ipv6 ipv6-name \<name\> rule \<1-999999\>
This command will give an overview of a rule in a single rule-set
```
```{opcmd} show firewall group \<name\>
Show an overview of defined groups, including the type, members, and where
the group is used.
:::{code-block} none
vyos@vyos:~$ show firewall group LAN
Firewall Groups
Name Type References Members
------------ ------------------ ----------------------- ----------------
LAN ipv6_network_group IPV6-VyOS_MANAGEMENT-30 2001:db8::0/64
IPV6-WAN_IN-30
LAN network_group VyOS_MANAGEMENT-30 192.168.200.0/24
WAN_IN-30
:::
```
```{opcmd} show firewall statistics
Show statistics of all rule-sets since the last boot.
```
### Show Firewall log
```{opcmd} show log firewall
```
```{opcmd} show log firewall ipv6
```
```{opcmd} show log firewall ipv6 [forward | input | output | name]
```
```{opcmd} show log firewall ipv6 [forward | input | output] filter
```
```{opcmd} show log firewall ipv6 name \<name\>
```
```{opcmd} show log firewall ipv6 [forward | input | output] filter rule \<rule\>
```
```{opcmd} show log firewall ipv6 name \<name\> rule \<rule\>
Show firewall logs for all firewalls, all IPv6 firewalls, specific hooks,
specific priorities, specific custom chains, or specific rule-sets.
```
### Example Partial Config
```none
firewall {
ipv6 {
input {
filter {
rule 10 {
action jump
inbound-interface {
name eth1
}
jump-target INP-ETH1
}
rule 20 {
action accept
inbound-interface {
name eth0
}
log
protocol ipv6-icmp
}
}
}
name INP-ETH1 {
default-action drop
default-log
rule 10 {
action accept
protocol tcp_udp
}
}
}
}
```
### Update geoip database
```{opcmd} update geoip
Command used to update GeoIP database and firewall sets.
```
|