File tree Expand file tree Collapse file tree 2 files changed +16
-1
lines changed
ansible/roles/neutron/tasks Expand file tree Collapse file tree 2 files changed +16
-1
lines changed Original file line number Diff line number Diff line change 25
25
sysctl_set : " {{ should_set }}"
26
26
sysctl_file : " {{ kolla_sysctl_conf_path }}"
27
27
with_items :
28
- - { name: "net.ipv4.ip_forward", value: 1}
29
28
- { name: "net.ipv4.conf.all.rp_filter", value: "{{ neutron_l3_agent_host_rp_filter_mode }}"}
30
29
- { name: "net.ipv4.conf.default.rp_filter", value: "{{ neutron_l3_agent_host_rp_filter_mode }}"}
31
30
- { name: "net.ipv4.neigh.default.gc_thresh1", value: "{{ neutron_l3_agent_host_ipv4_neigh_gc_thresh1 }}"}
Original file line number Diff line number Diff line change
1
+ ---
2
+ security :
3
+ - |
4
+ Fixes ``net.ipv4.ip_forward`` not to be enabled by Kolla Ansible
5
+ on the default network namespace.
6
+ It was enabled on hosts with Neutron L3 Agent (thus in most common
7
+ setups with OVS and/or Linux Bridge, but not OVN) and allowed,
8
+ unless users had extra iptables rules to avoid that, any traffic
9
+ to be accepted for forwarding (as long as it was routable and passed
10
+ other checks).
11
+ Users of existing setups are advised to re-evaluate whether they
12
+ need this sysctl enabled and disable if not necessary.
13
+ Kolla Ansible will simply no longer try to set this sysctl at all.
14
+ Neutron L3 Agent handles forwarding enablement per managed
15
+ namespace.
16
+ `LP#1945453 <https://launchpad.net/bugs/1945453>`__
You can’t perform that action at this time.
0 commit comments