blob: 433931162ca8fcb1a666513edf4001594acb204b (
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
|
{% macro conntrack_helpers(module_map, modules, ipv4=True) %}
{% if modules.ftp is vyos_defined %}
ct helper ftp_tcp {
type "ftp" protocol tcp;
}
{% endif %}
{% if modules.h323 is vyos_defined %}
ct helper ras_udp {
type "RAS" protocol udp;
}
ct helper q931_tcp {
type "Q.931" protocol tcp;
}
{% endif %}
{% if modules.pptp is vyos_defined and ipv4 %}
ct helper pptp_tcp {
type "pptp" protocol tcp;
}
{% endif %}
{% if modules.nfs is vyos_defined %}
ct helper rpc_tcp {
type "rpc" protocol tcp;
}
ct helper rpc_udp {
type "rpc" protocol udp;
}
{% endif %}
{% if modules.sip is vyos_defined %}
ct helper sip_tcp {
type "sip" protocol tcp;
}
ct helper sip_udp {
type "sip" protocol udp;
}
{% endif %}
{% if modules.tftp is vyos_defined %}
ct helper tftp_udp {
type "tftp" protocol udp;
}
{% endif %}
{% if modules.sqlnet is vyos_defined %}
ct helper tns_tcp {
type "tns" protocol tcp;
}
{% endif %}
chain VYOS_CT_HELPER {
{% for module, module_conf in module_map.items() %}
{% if modules[module] is vyos_defined %}
{% if 'nftables' in module_conf %}
{% if module_conf.ipv4 is not vyos_defined or module_conf.ipv4 == ipv4 %}
{% for rule in module_conf.nftables %}
{{ rule }}
{% endfor %}
{% endif %}
{% endif %}
{% endif %}
{% endfor %}
return
}
{% endmacro %}
|