IPv6 Firewall Configuration
Overview
In this section there’s useful information on all firewall configuration that can be done regarding IPv6, and appropriate op-mode commands. Configuration commands covered in this section:
From the main structure defined in Firewall Overview in this section you can find detailed information only for the next part of the general structure:
- set firewall
* ipv6
- forward
+ filter
- input
+ filter
- output
+ filter
+ raw
- prerouting
+ raw
- name
+ custom_name
First, all traffic is received by the router, and it is processed in the prerouting section.
This stage includes:
Firewall Prerouting: commands found under
set firewall ipv6 prerouting raw ...
Conntrack Ignore:
set system conntrack ignore ipv6...
Policy Route: commands found under
set policy route6 ...
Destination NAT: commands found under
set nat66 destination ...
For transit traffic, which is received by the router and forwarded, the base chain is forward. A simplified packet flow diagram for transit traffic is shown next:

The base firewall chain to configure filtering rules for transit traffic
is set firewall ipv6 forward filter ...
, which happens in stage 5,
highlighted in the color red.
For traffic towards the router itself, the base chain is input, while traffic originated by the router has the base chain output. A new simplified packet flow diagram is shown next, which shows the path for traffic destined to the router itself, and traffic generated by the router (starting from circle number 6):

The base chain for traffic towards the router is set firewall ipv6 input
filter ...
And the base chain for traffic generated by the router is set firewall ipv6
output ...
, where two sub-chains are available: filter and raw:
Output Prerouting:
set firewall ipv6 output raw ...
. As described in Prerouting, rules defined in this section are processed before connection tracking subsystem.Output Filter:
set firewall ipv6 output filter ...
. Rules defined in this section are processed after connection tracking subsystem.
Note
Important note about default-actions: If a default action for any base chain is not defined, then the default action is set to accept for that chain. For custom chains, if the default action is not defined, then the default-action is set to drop
Custom firewall chains can be created, with commands
set firewall ipv6 name <name> ...
. In order to use
such custom chain, a rule with action jump, and the appropriate target
should be defined in a base chain.
Firewall - IPv6 Rules
For firewall filtering, firewall rules need to be created. Each rule is numbered, has an action to apply if the rule is matched, and the ability to specify multiple matching criteria. Data packets go through the rules from 1 - 999999, so order is crucial. At the first match the action of the rule will be executed.
Actions
If a rule is defined, then an action must be defined for it. This tells the firewall what to do if all of the criteria defined for that rule match.
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.
This required setting defines the action of the current rule. If the action is set to jump, then a jump-target is also needed.
To be used only when action is set to jump
. Use this command to specify
the jump target.
To be used only when action is set to queue
. Use this command to specify
the queue target to use. Queue range is also supported.
To be used only when action is set to queue
. Use this command to let the
packet go through firewall when no userspace software is connected to the
queue.
To be used only when action is set to queue
. Use this command to
distribute packets between several 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.
This sets the default action of the rule-set if a packet does not match the
criteria of any rule. If default-action is set to jump
, then
default-jump-target
is also needed. Note that for base chains, the
default action can only be set to accept
or drop
, while on custom
chains, more actions are available.
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 the default action for any base chain is not defined, then the default action is set to accept for that chain. For custom chains if a default action is not defined then the default-action is set to drop.
Firewall Logs
Logging can be enabled for every single firewall rule. If enabled, other log options can be defined.
Enable logging for the matched packet. If this configuration command is not present, then the log is not enabled.
Use this command to enable the logging of the default action on the specified chain.
Define log-level. Only applicable if rule log is enabled.
Define the log group to send messages to. Only applicable if rule log is enabled.
Define the length of packet payload to include in a netlink message. Only applicable if rule log is enabled and log group is defined.
Firewall Description
For reference, a description can be defined for every single rule, and for every defined custom chain.
Provide a rule-set description to a custom firewall chain.
Rule Status
When defining a rule, it is enabled by default. In some cases, it is useful to just disable the rule, rather than removing it.
Matching criteria
There are a lot of matching criteria against which the packet can be tested.
Match based on nat connection status.
Match based on connection mark.
Match based on source and/or destination address. This is similar to the network groups part, but here you are able to negate the matching addresses.
set firewall ipv6 name FOO rule 100 source address 2001:db8::202
An arbitrary netmask can be applied to mask addresses to only match against a specific portion. This is particularly useful with IPv6 as rules will remain valid if the IPv6 prefix changes and the host portion of systems IPv6 address is static (for example, with SLAAC or tokenised IPv6 addresses)
This functions for both individual addresses and address groups.
# 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
Specify a Fully Qualified Domain Name as source/destination to match. Ensure that the router is able to resolve this dns query.
Match IP addresses based on its geolocation. More info: geoip matching. Use inverse-match to match anything except the given country-codes.
Data is provided by DB-IP.com under CC-BY-4.0 license. Attribution required, permits redistribution so we can include a database in images(~3MB compressed). Includes cron script (manually callable by op-mode update geoip) to keep database and rules updated.
You can only specify a source mac-address to match.
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
A port can be set by number or name as defined in /etc/services
.
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:
set firewall ipv6 forward filter rule 10 source port '!22,https,3333-3338'
Use a specific address-group. Prepending the character !
to invert the
criteria to match is also supported.
Use a specific dynamic-address-group. Prepending the character !
to
invert the criteria to match is also supported.
Use a specific network-group. Prepending the character !
to invert the
criteria to match is also supported.
Use a specific port-group. Prepending the character !
to invert the
criteria to match is also supported.
Use a specific domain-group. Prepending the character !
to invert the
criteria to match is also supported.
Use a specific mac-group. Prepending the character !
to invert the
criteria to match is also supported.
Match based on dscp value.
Match based on fragmentation.
Match based on icmp|icmpv6 code and type.
Match based on icmpv6 type-name. Use tab for information about what type-name criteria are supported.
Match based on inbound interface. Wildcard *
can be used.
For example: eth2*
. Prepending the character !
to invert the
criteria to match is also supported. For example !eth2
Note
If an interface is attached to a non-default vrf, when using
inbound-interface, the vrf name must be used. For example set firewall
ipv6 forward filter rule 10 inbound-interface name MGMT
Match based on the inbound interface group. Prepending the character !
to invert the criteria to match is also supported. For example !IFACE_GROUP
Match based on outbound interface. Wildcard *
can be used.
For example: eth2*
. Prepending the character !
to invert the
criteria to match is also supported. For example !eth2
Note
If an interface is attached to a non-default vrf, when using
outbound-interface, the real interface name must be used. For example
set firewall ipv6 forward filter rule 10 outbound-interface name eth0
Match based on outbound interface group. Prepending the character !
to
invert the criteria to match is also supported. For example !IFACE_GROUP
Match based on ipsec.
Match based on the maximum number of packets to allow in excess of rate.
Match based on the maximum average rate, specified as integer/unit. For example 5/minutes
Match based on the packet length. Multiple values from 1 to 65535 and ranges are supported.
Match based on the packet type.
Match based on protocol number or name as defined in /etc/protocols
.
Special names are all
for all protocols and tcp_udp
for tcp and udp
based packets. The !
negates the selected protocol.
set firewall ipv6 input filter rule 10 protocol tcp
Match bases on recently seen sources.
Allowed values fpr TCP flags: ack
, cwr
, ecn
, fin
, psh
,
rst
, syn
and urg
. Multiple values are supported, and for
inverted selection use not
, as shown in the example.
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'
Match the hop-limit parameter, where ‘eq’ stands for ‘equal’; ‘gt’ stands for ‘greater than’, and ‘lt’ stands for ‘less than’.
Packet Modifications
Starting from VyOS-1.5-rolling-202410060007, the firewall can modify packets before they are sent out. This feaure provides more flexibility in packet handling.
Set a specific value of Differentiated Services Codepoint (DSCP).
Set a specific packet mark value.
Set the TCP-MSS (TCP maximum segment size) for the connection.
Synproxy
Synproxy connections
Set the TCP-MSS (maximum segment size) for the connection
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
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
This will show you a basic firewall overview, for all rule-sets, and not only for ipv6
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
This will show you a summary of rule-sets and groups
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_ADRESSES 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
This command will give an overview of a single rule-set.
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:~$
This command will give an overview of a rule in a single rule-set
Overview of defined groups. You see the type, the members, and where the group is used.
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
Show Firewall log
Example Partial Config
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
}
}
}
}