Restrict the prometheus ports range.
This commit is contained in:
parent
b00926c1d5
commit
d27de1cf7c
|
@ -316,11 +316,11 @@
|
||||||
{% if prometheus_enabled is defined and prometheus_enabled %}
|
{% if prometheus_enabled is defined and prometheus_enabled %}
|
||||||
{% if prometheus_servers_ip is defined %}
|
{% if prometheus_servers_ip is defined %}
|
||||||
{% for ip in prometheus_servers_ip %}
|
{% for ip in prometheus_servers_ip %}
|
||||||
-A INPUT -m state --state NEW -s {{ ip }} -p tcp -m tcp --dport 9100:9300 -j ACCEPT
|
-A INPUT -m state --state NEW -s {{ ip }} -p tcp -m tcp --dport 9100:9110 -j ACCEPT
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
-A INPUT -m state --state NEW -p tcp -m tcp --dport 9100:9300 -j REJECT --reject-with icmp-host-prohibited
|
-A INPUT -m state --state NEW -p tcp -m tcp --dport 9100:9110 -j REJECT --reject-with icmp-host-prohibited
|
||||||
{% else %}
|
{% else %}
|
||||||
-A INPUT -m state --state NEW -p tcp -m tcp --dport 9100:9300 -j ACCEPT
|
-A INPUT -m state --state NEW -p tcp -m tcp --dport 9100:9110 -j ACCEPT
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if keepalived_enabled is defined and keepalived_enabled %}
|
{% if keepalived_enabled is defined and keepalived_enabled %}
|
||||||
|
|
Loading…
Reference in New Issue