1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-03-13 12:58:20 +03:00
systemd-stable/modprobe.d/systemd.conf
Luca Boccassi 125f81ff6f modprobe: set 'ifb numifbs=0' to avoid autocreating ifb0
Fixes https://github.com/systemd/systemd/issues/30913

(cherry picked from commit b0c45a633af94bab810f47abe57bc47c67e0b516)
(cherry picked from commit a541dc8fd5ea073763608ab23a2a27894e7a8e12)
(cherry picked from commit 2eed57e0a8faf9cc16188e534c5ba27681fc632b)
(cherry picked from commit a8f9dffac89991ab1111c698e632a0bd065b13bc)
2024-01-26 21:35:39 +00:00

25 lines
821 B
Plaintext

# SPDX-License-Identifier: LGPL-2.1-or-later
#
# This file is part of systemd.
#
# systemd is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.
#
# When bonding module is loaded, it creates bond0 by default due to max_bonds
# option default value 1. This interferes with the network configuration
# management / networkd, as it is not possible to detect whether this bond0 was
# intentionally configured by the user, or should be managed by
# networkd/NM/etc. Therefore disable bond0 creation.
options bonding max_bonds=0
# Do the same for dummy0.
options dummy numdummies=0
# Do the same for ifb0.
options ifb numifbs=0