|
|
|
|
|
|
|
|
# File managed by Salt at <{{ source }}>. |
|
|
# File managed by Salt at <{{ source }}>. |
|
|
# Your changes will be overwritten. |
|
|
# Your changes will be overwritten. |
|
|
######################################################################## |
|
|
######################################################################## |
|
|
|
|
|
{%- set sysctls = ufw_sysctl.get('sysctls') %} |
|
|
{%- set forwarding = ufw_sysctl.get('forwarding', 0) %} |
|
|
{%- set forwarding = ufw_sysctl.get('forwarding', 0) %} |
|
|
{%- set rp_filter = ufw_sysctl.get('rp_filter', 1) %} |
|
|
{%- set rp_filter = ufw_sysctl.get('rp_filter', 1) %} |
|
|
{%- set accept_source_route = ufw_sysctl.get('accept_source_route', 0) %} |
|
|
{%- set accept_source_route = ufw_sysctl.get('accept_source_route', 0) %} |
|
|
|
|
|
|
|
|
# Configuration file for setting network variables. Please note these settings |
|
|
# Configuration file for setting network variables. Please note these settings |
|
|
# override /etc/sysctl.conf. If you prefer to use /etc/sysctl.conf, please |
|
|
# override /etc/sysctl.conf. If you prefer to use /etc/sysctl.conf, please |
|
|
# adjust IPT_SYSCTL in /etc/default/ufw. |
|
|
# adjust IPT_SYSCTL in /etc/default/ufw. |
|
|
|
|
|
{%- if sysctls is not none %} |
|
|
|
|
|
{%- for sysctl, value in sysctls.items() %} |
|
|
|
|
|
{{ sysctl }}={{ value }} |
|
|
|
|
|
{%- endfor %} |
|
|
|
|
|
{%- else %} |
|
|
|
|
|
|
|
|
# Uncomment this to allow this host to route packets between interfaces |
|
|
# Uncomment this to allow this host to route packets between interfaces |
|
|
net/ipv4/ip_forward={{ forwarding }} |
|
|
net/ipv4/ip_forward={{ forwarding }} |
|
|
|
|
|
|
|
|
# Uncomment this to enable ipv6 privacy addressing |
|
|
# Uncomment this to enable ipv6 privacy addressing |
|
|
net/ipv6/conf/default/use_tempaddr={{ use_tempaddr }} |
|
|
net/ipv6/conf/default/use_tempaddr={{ use_tempaddr }} |
|
|
net/ipv6/conf/all/use_tempaddr={{ use_tempaddr }} |
|
|
net/ipv6/conf/all/use_tempaddr={{ use_tempaddr }} |
|
|
|
|
|
{% endif %} |