diff options
author | Christian Breunig <christian@breunig.cc> | 2023-11-20 19:31:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-20 19:31:33 +0100 |
commit | 03740f14ff0b34c997e74511ac35dbf3c1e48309 (patch) | |
tree | 989ecacd04cf311c6bf6d86dcda1f69ff6b215c0 /src/etc/sysctl.d/30-vyos-router.conf | |
parent | 0650054e646d5119040635fbd19ae15785c16aa8 (diff) | |
parent | 3280a153713decf28eb5c564573028df19a4e1b1 (diff) | |
download | vyos-1x-03740f14ff0b34c997e74511ac35dbf3c1e48309.tar.gz vyos-1x-03740f14ff0b34c997e74511ac35dbf3c1e48309.zip |
Merge pull request #2515 from vyos/mergify/bp/sagitta/pr-2508
http: T5762: api: make API socket backend communication the one and only default (backport #2508)
Diffstat (limited to 'src/etc/sysctl.d/30-vyos-router.conf')
-rw-r--r-- | src/etc/sysctl.d/30-vyos-router.conf | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/etc/sysctl.d/30-vyos-router.conf b/src/etc/sysctl.d/30-vyos-router.conf index 1c9b8999f..67d96969e 100644 --- a/src/etc/sysctl.d/30-vyos-router.conf +++ b/src/etc/sysctl.d/30-vyos-router.conf @@ -105,3 +105,11 @@ net.core.rps_sock_flow_entries = 32768 net.core.default_qdisc=fq_codel net.ipv4.tcp_congestion_control=bbr +# VRF - Virtual routing and forwarding +# When net.vrf.strict_mode=0 (default) it is possible to associate multiple +# VRF devices to the same table. Conversely, when net.vrf.strict_mode=1 a +# table can be associated to a single VRF device. +# +# A VRF table can be used by the VyOS CLI only once (ensured by verify()), +# this simply adds an additional Kernel safety net +net.vrf.strict_mode=1 |