zoukankan      html  css  js  c++  java
  • Cetos 中添加bbr服务

    说明:此方法只适用于KVM架构的,OpenVZ平台无法使用;

    一:安装bbr服务;

     # wget --no-check-certificate https://github.com/teddysun/across/raw/master/bbr.sh
     # chmod +x bbr.sh 
     # ./bbr.sh

      (如果提示wget:command not fount,则输入命令 yum -y install wget) 

      然后,点击Y进行下一步下一步……

      安装后,需要重启服务器;

    二:验证是否安装成功;

      重启后,执行命令:

    uname -r

      查看内核版本,含有 4.13 就表示OK 了

    sysctl net.ipv4.tcp_available_congestion_control
    返回值一般为:
    net.ipv4.tcp_available_congestion_control =bbr cubic reno
    
    sysctl net.ipv4.tcp_congestion_control
    返回值一般为:
    net.ipv4.tcp_congestion_control = bbr
    
    sysctl net.core.default_qdisc
    返回值一般为:
    net.core.default_qdisc = fq

    三:查看bbr服务是否开启;

    lsmod | grep bbr

    返回值有 tcp_bbr 模块即说明bbr已启动。

  • 相关阅读:
    Vivian's Problem UVA
    Prime k-tuple UVA
    M
    Make a Crystal UVA
    Cryptography Reloaded UVALive
    Gauss Prime UVA
    Discrete Square Roots UVALive
    The Bells are Ringing UVALive
    Huge Mods UVA
    指数循环节
  • 原文地址:https://www.cnblogs.com/Rawls/p/9936095.html
Copyright © 2011-2022 走看看