mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
network/tasks/install.yml: Clarify 4 sysctl defaults
This commit is contained in:
parent
1b592445f5
commit
d768757f7a
1 changed files with 4 additions and 4 deletions
|
@ -55,11 +55,11 @@
|
||||||
name: "{{ item.name }}"
|
name: "{{ item.name }}"
|
||||||
value: "{{ item.value }}"
|
value: "{{ item.value }}"
|
||||||
with_items:
|
with_items:
|
||||||
- { name: 'net.ipv4.ip_forward', value: '1' } # Masquerading LAN->Internet
|
- { name: 'net.ipv4.ip_forward', value: '1' } # Masquerading LAN->Internet; Default: 0
|
||||||
- { name: 'net.ipv4.conf.default.rp_filter', value: '1' }
|
- { name: 'net.ipv4.conf.default.rp_filter', value: '1' } # Default: 2
|
||||||
- { name: 'net.ipv4.conf.default.accept_source_route', value: '0' }
|
- { name: 'net.ipv4.conf.default.accept_source_route', value: '0' } # Default: 1
|
||||||
#- { name: 'net.ipv4.tcp_syncookies', value: '1' } # Very standard in 2020
|
#- { name: 'net.ipv4.tcp_syncookies', value: '1' } # Very standard in 2020
|
||||||
- { name: 'net.ipv6.conf.all.disable_ipv6', value: '1' } # IPv6 disabled
|
- { name: 'net.ipv6.conf.all.disable_ipv6', value: '1' } # IPv6 disabled; Default: 0
|
||||||
#- { name: 'net.ipv6.conf.default.disable_ipv6', value: '1' } # AUTO-SET
|
#- { name: 'net.ipv6.conf.default.disable_ipv6', value: '1' } # AUTO-SET
|
||||||
#- { name: 'net.ipv6.conf.lo.disable_ipv6', value: '1' } # BY ABOVE
|
#- { name: 'net.ipv6.conf.lo.disable_ipv6', value: '1' } # BY ABOVE
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue