You are not logged in.
I'm getting
( 4/22) Applying kernel sysctl settings...
Couldn't write '1' to 'net/bridge/bridge-nf-call-iptables', ignoring: No such file or directory
Couldn't write '1' to 'net/bridge/bridge-nf-call-ip6tables', ignoring: No such file or directoryafter an update and couldn't find anything about this via Google search.
I wonder what's going on and how to fix it.
nf tables are the "new" linux firewall
sudo lsmod|grep nf
nf_nat 61440 2 ip6table_nat,iptable_nat
nf_conntrack 200704 1 nf_nat
nf_defrag_ipv6 24576 1 nf_conntrack
nf_defrag_ipv4 12288 1 nf_conntrack
nfnetlink 20480 1
libcrc32c 12288 4 nf_conntrack,nf_nat,xfs,raid456my iface is part of a bridge, because libvirt/kvm and the inability to ssh into the guests with macvtap.
It is set up via Networkmanager.
so yeah "how fix"?
Last edited by dalu (2024-11-07 08:53:51)
Offline
modinfo br-netfilterIt's certainly not loaded atm.
Online
Well I don't have any firewall running or configured or needed.
Should I just ignore this error message then?
The script doing that could add a check if this module is loaded and then set those values or not.
Who or what is to blame for this, how can I find out?
Offline
Who or what is to blame for this, how can I find out?
◉ pacman -Qo /usr/share/libalpm/hooks/30-systemd-sysctl.hook=> systemd
https://man.archlinux.org/man/core/syst … ysctl.8.en
https://man.archlinux.org/man/sysctl.d.5.en
grep -ri bridge-nf-call-iptables /etc/sysctl.d/*.conf /run/sysctl.d/*.conf /usr/local/lib/sysctl.d/*.conf /usr/lib/sysctl.d/*.confOnline
Aaah, dumbo me.
I put
net.bridge.bridge-nf-call-iptables=1
net.bridge.bridge-nf-call-ip6tables=1in /etc/sysctl.d/nftables.conf
because of k8s.
However, https://unix.stackexchange.com/question … -parameter
In fact, they are working on replacing it in kubernetes. See github.com/kubernetes/kubernetes/issues/62720 and github.com/kubernetes/enhancements/issues/3866 –
Adrian
Commented Dec 29, 2023 at 17:46
will add solved tag
Offline