Created
July 29, 2019 09:20
-
-
Save iamcryptoki/ed6925ce95f047673e7709f23e0b9939 to your computer and use it in GitHub Desktop.
Fix sysctl: cannot stat /proc/sys/net/bridge/bridge-nf-call-iptables.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$ modprobe bridge | |
$ echo "net.bridge.bridge-nf-call-iptables = 1" >> /etc/sysctl.conf | |
$ sysctl -p /etc/sysctl.conf | |
sysctl: cannot stat /proc/sys/net/bridge/bridge-nf-call-iptables: No such file or directory sysctl: cannot stat /proc/sys/net/bridge/bridge-nf-call-ip6tables: No such file or directory | |
# SOLUTION | |
$ modprobe br_netfilter | |
$ sysctl -p /etc/sysctl.conf |
thanks
thanks
Thanks!
Thanks!!
❤️
thanks a lot
Thanks !
Thanks!
yep forgot to modprobe the br_netfilter apparently. thanks.
thanks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
exactly