File: limit-min-ipv4-mtu-to-500.patch

package info (click to toggle)
python-neutron-lib 3.21.1-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 7,660 kB
  • sloc: python: 22,829; sh: 137; makefile: 24
file content (16 lines) | stat: -rw-r--r-- 463 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Description: Limit IPv4 min MTU to 500
Author: Thomas Goirand <zigo@debian.org>
Forwarded: not-needed
Last-Update: 2025-03-24

--- python-neutron-lib-3.18.2.orig/neutron_lib/constants.py
+++ python-neutron-lib-3.18.2/neutron_lib/constants.py
@@ -616,7 +616,7 @@ RPC_NAMESPACE_RESOURCES = None
 
 # Default network MTU value when not configured
 DEFAULT_NETWORK_MTU = 1500
-IPV4_MIN_MTU = 68
+IPV4_MIN_MTU = 500
 IPV6_MIN_MTU = 1280
 
 ROUTER_MARK_MASK = "0xffff"