centos7添加bridge-nf-call-ip6tables出现No such file or directory

在/etc/sysctl.conf中添加:

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

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

[[email protected] ~]# cat /etc/sysctl.conf

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

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

执行sysctl -p 时出现:

[[email protected] ~]# sysctl -p

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

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

解决方法:

[[email protected] ~]# modprobe br_netfilter

[[email protected] ~]# ls /proc/sys/net/bridge

bridge-nf-call-arptables bridge-nf-filter-pppoe-tagged

bridge-nf-call-ip6tables bridge-nf-filter-vlan-tagged

bridge-nf-call-iptables bridge-nf-pass-vlan-input-dev

[[email protected] ~]# sysctl -p

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

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

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

时间: 2024-10-10 13:26:41

centos7添加bridge-nf-call-ip6tables出现No such file or directory的相关文章

CentOS7添加en_US.UTF-8字符集

CentOS7添加en_US.UTF-8字符集 学习 centos 字符集 CentOS7添加en_US.UTF-8字符集 1. 问题/现象 2. 解决办法 1. 问题/现象 今天我在使用PMM docker的时候,发现连最基本的en_US.UTF-8字符集都没有. 2. 解决办法 搜了很久的资料,发现如下命令即可解决. localedef -v -c -i en_US -f UTF-8 en_US.UTF-8 查看结果: localedef命令以前还真没用过,其实在linux下,还有很多命令不

centOS7添加开机启动服务/执行脚本

centOS7添加开机启动服务/执行脚本 /etc/rc.d/rc.local  后追加shell脚本 1 开机启动服务 在centos7中添加开机自启服务非常方便,只需要两条命令(以Jenkins为例): #设置jenkins服务为自启动服务 systemctl enable jenkins.service #启动jenkins服务 systemctl start jenkins.service 2 开机执行脚本 在centos7中增加脚本有两种常用的方法: 修改/etc/rc.d/rc/lo

centos7添加phpredis

1 安装redis服务器 关系型数据库发展到今天,有自身的优点,当然也有他的缺点,于是就有了非关系型数据库.redis就是一种基于key-value的非关系型数据库.渣浪微博的一部分实时更新的数据就是保存在redis上,我肿么赶脚,做im,redis貌似很适合哒! redis 首先把redis安装到服务器中 1.wget http://download.redis.io/redis-stable.tar.gz 下载redis源码,redis是用ansi c语言写的,下载下来的是源码,我大一的时候

ubuntu添加qmake 出现错误 qmake: could not exec '/usr/lib/x86_64-linux-gnu/qt4/bin/qmake': No such file or directory

出错原因,没有安装qt4库,/usr/lib/x86_64-linux-gnu/qt4 所以出现错误, 可以安装手动安装qt库 sudo apt-get install qt-sdk 如果自己编译qt库,那就需要手动修改路径 cd /usr/lib/x86_64-linux-gnu/qt-default/qtchooser/ 会有一个default.conf配置文件,可以修改默认配置文件为你编译好的qt库路径 ubuntu添加qmake 出现错误 qmake: could not exec '/

centos7数据库连接使用127.0.0.1报permission denied,使用localhost报No such file or directory

安装lamp环境后,测试数据库连接. 当host使用127.0.0.1时,报错:(HY000/2002): Permission denied. 把host换成localhost后,又报错:SQLSTATE[HY000] [2002] No such file or directory. 最后发现是因为没有关闭selinux,通常情况下载安装完CentOS7后,默认情况下SElinux是启用状态. [[email protected] ~]# sestatus SELinux status: e

STM32 关于头文件路径没添加错误问题(cannot open source input file "spi.h": No such file or directory)

error:  #5: cannot open source input file "spi.h": No such file or directory 1.出现这种问题,首先要确认头文件的命名要与文件名一致,如下: #ifndef _SPI_H #define _SPI_H #endif 2.添加路径,问题即可解决 3.确认OK,编译,问题解决! 原文地址:https://www.cnblogs.com/xingboy/p/9541267.html

CentOS7添加需要开机启动的脚本

1.修改开机脚本添加文件的权限 [[email protected] ~]# cat /etc/rc.d/rc.local  #!/bin/bash # THIS FILE IS ADDED FOR COMPATIBILITY PURPOSES # # It is highly advisable to create own systemd services or udev rules # to run scripts during boot instead of using this file

centos7添加Windows引导

蛋疼 1.gedit    /etc/grub.d/40_custom 2.在最后添加: menuentry '显示的名字'{     set root=(hd0,1)    chainloader +1    boot} 如图: 3.grub2-mkconfig     -o     /boot/grub2/grub.cfg OK!可以了!有很多方法都可以...也不去找了...

【Linux】CentOS7 添加常用源

CentOS 的官方源去掉了一些与版权有关的软件,因此想要安装这些软件或者手动下载安装,或者使用其他源. 下面我推荐常用的两个源, 这两个源基本可以满足一般服务器的使用需求. 1.首先, 添加源之前要确定系统架构及版本 查看系统版本: [[email protected] ~]$ cat /etc/redhat-release CentOS Linux release 7.3.1611 (Core) [[email protected] ~]$ uname -r 3.10.0-514.el7.x