diff options
author | Christian Breunig <christian@breunig.cc> | 2023-08-26 14:59:10 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-26 14:59:10 +0200 |
commit | 75aa90cf2b234a34565d165697196ac9a304bb66 (patch) | |
tree | 8a1c07e17cec0333b71ed32c12f403953a762afe /src | |
parent | 3144b67f1b04e88f5ba928db2eee6f198be04a3a (diff) | |
parent | 2509a1ab84cdb6d9389b547f93b0904cf329e78a (diff) | |
download | vyos-1x-75aa90cf2b234a34565d165697196ac9a304bb66.tar.gz vyos-1x-75aa90cf2b234a34565d165697196ac9a304bb66.zip |
Merge pull request #2163 from sarthurdev/firewall_rpfilter
firewall: T3509: Add support for IPv6 reverse path filtering
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/firewall.py | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/conf_mode/firewall.py b/src/conf_mode/firewall.py index d32ae497a..c86d1b555 100755 --- a/src/conf_mode/firewall.py +++ b/src/conf_mode/firewall.py @@ -54,7 +54,6 @@ sysfs_config = { 'log_martians': {'sysfs': '/proc/sys/net/ipv4/conf/all/log_martians'}, 'receive_redirects': {'sysfs': '/proc/sys/net/ipv4/conf/*/accept_redirects'}, 'send_redirects': {'sysfs': '/proc/sys/net/ipv4/conf/*/send_redirects'}, - 'source_validation': {'sysfs': '/proc/sys/net/ipv4/conf/*/rp_filter', 'disable': '0', 'strict': '1', 'loose': '2'}, 'syn_cookies': {'sysfs': '/proc/sys/net/ipv4/tcp_syncookies'}, 'twa_hazards_protection': {'sysfs': '/proc/sys/net/ipv4/tcp_rfc1337'} } |