Centos8安装bbr开启bbr

446 教程
CentOS 8 默认内核版本为 4.18.x,内核版本高于 4.9 就可以直接开启 BBR 1.开启BBR echo "net.core.default_qdisc=fq" >> /etc/sysctl.conf echo "net.ipv4.tcp_congestion_control=bbr" >> /etc/sysctl.conf 保存退出后,执行下边的命令使配置生效 sysctl -p 2.检查 BBR 是否开启成功 sysctl -n net.ipv4.tcp_congestion_control lsmod | grep bbr

RHEL8/CentOS8的基础防火墙配置-用例

366 教程
systemctl systemctl unmask firewalld #执行命令,即可实现取消服务的锁定 systemctl mask firewalld # 下次需要锁定该服务时执行 systemctl start firewalld.service #启动防火墙 systemctl stop firewalld.service #停止防火墙 systemctl reloadt firewalld.service #重载配置 systemctl restart firewalld.service #重启服务 systemctl status firewalld.service #显示服务的状态 systemctl enable firewalld.service …