diff options
author | Daniil Baturin <daniil@vyos.io> | 2023-12-21 15:32:36 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-21 15:32:36 +0000 |
commit | c9b71b0669924da41dc50632bdcaed710f03d4d7 (patch) | |
tree | 30a3eada0c894fb0ff07f83b360f9535c5d43627 /src/etc/sysctl.d/30-vyos-router.conf | |
parent | 5c91424daafbee512f7c87caa418cd05f0bc4633 (diff) | |
parent | 0ee2f8285c81878687a9f92e6a3b0f10c4d75584 (diff) | |
download | vyos-1x-c9b71b0669924da41dc50632bdcaed710f03d4d7.tar.gz vyos-1x-c9b71b0669924da41dc50632bdcaed710f03d4d7.zip |
Merge pull request #2674 from vyos/mergify/bp/sagitta/pr-2663
srv6: T591: enable SR enabled packet processing on defined interfaces (backport #2663)
Diffstat (limited to 'src/etc/sysctl.d/30-vyos-router.conf')
-rw-r--r-- | src/etc/sysctl.d/30-vyos-router.conf | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/src/etc/sysctl.d/30-vyos-router.conf b/src/etc/sysctl.d/30-vyos-router.conf index 67d96969e..6291be5f0 100644 --- a/src/etc/sysctl.d/30-vyos-router.conf +++ b/src/etc/sysctl.d/30-vyos-router.conf @@ -105,11 +105,6 @@ 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 +# Disable IPv6 Segment Routing packets by default +net.ipv6.conf.all.seg6_enabled = 0 +net.ipv6.conf.default.seg6_enabled = 0 |