summaryrefslogtreecommitdiff
path: root/data/templates/firewall/nftables-offload.j2
diff options
context:
space:
mode:
Diffstat (limited to 'data/templates/firewall/nftables-offload.j2')
-rw-r--r--data/templates/firewall/nftables-offload.j29
1 files changed, 9 insertions, 0 deletions
diff --git a/data/templates/firewall/nftables-offload.j2 b/data/templates/firewall/nftables-offload.j2
new file mode 100644
index 0000000..a893e05
--- /dev/null
+++ b/data/templates/firewall/nftables-offload.j2
@@ -0,0 +1,9 @@
+{% macro flowtable(name, config) %}
+ flowtable VYOS_FLOWTABLE_{{ name }} {
+ hook ingress priority 0; devices = { {{ config.interface | join(', ') }} };
+{% if config.offload is vyos_defined('hardware') %}
+ flags offload;
+{% endif %}
+ counter
+ }
+{% endmacro %}