summaryrefslogtreecommitdiff
path: root/data/templates/firewall/nftables-defines.j2
blob: 4fa92f2e3142b6399e901ab48f88eefe5dfb0371 (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
{% if group is vyos_defined %}
{%     if group.address_group is vyos_defined %}
{%         for group_name, group_conf in group.address_group.items() %}
define A_{{ group_name }} = { {{ group_conf.address | join(",") }} }
{%         endfor %}
{%     endif %}
{%     if group.ipv6_address_group is vyos_defined %}
{%         for group_name, group_conf in group.ipv6_address_group.items() %}
define A6_{{ group_name }} = { {{ group_conf.address | join(",") }} }
{%         endfor %}
{%     endif %}
{%     if group.mac_group is vyos_defined %}
{%         for group_name, group_conf in group.mac_group.items() %}
define M_{{ group_name }} = { {{ group_conf.mac_address | join(",") }} }
{%         endfor %}
{%     endif %}
{%     if group.network_group is vyos_defined %}
{%         for group_name, group_conf in group.network_group.items() %}
define N_{{ group_name }} = { {{ group_conf.network | join(",") }} }
{%         endfor %}
{%     endif %}
{%     if group.ipv6_network_group is vyos_defined %}
{%         for group_name, group_conf in group.ipv6_network_group.items() %}
define N6_{{ group_name }} = { {{ group_conf.network | join(",") }} }
{%         endfor %}
{%     endif %}
{%     if group.port_group is vyos_defined %}
{%         for group_name, group_conf in group.port_group.items() %}
define P_{{ group_name }} = { {{ group_conf.port | join(",") }} }
{%         endfor %}
{%     endif %}
{% endif %}