An error is reported when verifying the sysctl value when the compute node installs the neutron component

There is an error when verifying the sysctl value when the compute node installs the neutron component

sysctl net.bridge.bridge-nf-call-ip6tables

sysctl net.bridge.bridge-nf-call-iptables

   报错sysctl: cannot stat /proc/sys/net/bridge/bridge-nf-call-iptables: No such file or directory

Solve with the following command

[root@computer ~]# modprobe br_netfilter

[root@computer ~]# ls /proc/sys/net/bridge/

bridge-nf-call-arptables  bridge-nf-call-iptables        bridge-nf-filter-vlan-tagged

bridge-nf-call-ip6tables  bridge-nf-filter-pppoe-tagged  bridge-nf-pass-vlan-input-dev

[root@computer ~]# sysctl -p

[root@computer ~]# sysctl net.bridge.bridge-nf-call-ip6tables

net.bridge.bridge-nf-call-ip6tables = 1

[root@computer ~]# sysctl net.bridge.bridge-nf-call-iptables

net.bridge.bridge-nf-call-iptables = 1

Guess you like

Origin blog.csdn.net/qq_42039946/article/details/85337438