美文网首页
bond加带宽

bond加带宽

作者: linux_python | 来源:发表于2020-02-13 17:21 被阅读0次

bonding配置案例:

  1. 接口配置文件
    [root@install network-scripts]# cat ifcfg-bond0
    DEVICE=bond0
    TYPE=Ethernet
    ONBOOT=yes
    NM_CONTROLLED=no
    BOOTPROTO=none
    IPADDR=
    PREFIX=24
    IPV6INIT=no
    USERCTL=no
    GATEWAY=8.8.8.8

[root@install network-scripts]# cat ifcfg-eth0
DEVICE=eth0
TYPE=Ethernet
ONBOOT=yes
NM_CONTROLLED=no
BOOTPROTO=none
IPV6INIT=no
USERCTL=no
MASTER=bond0
SLAVE=yes

[root@install network-scripts]# cat ifcfg-eth1
DEVICE=eth1
TYPE=Ethernet
ONBOOT=yes
NM_CONTROLLED=no
BOOTPROTO=none
IPV6INIT=no
USERCTL=no
MASTER=bond0
SLAVE=yes

  1. bonding参数
    [root@install ~]# tail -2 /etc/modprobe.d/bond0.conf
    alias bond0 bonding
    options bonding mode=0 miimon=100

  2. 重启网络服务
    [root@install ~]# systemctl restart network
    [root@install ~]# ip a

[root@install ~]# cat /proc/net/bonding/bond0
Ethernet Channel Bonding Driver: v3.6.0 (September 26, 2009)

相关文章

  • bond加带宽

    bonding配置案例: 接口配置文件[root@install network-scripts]# cat if...

  • 1Overbond Unbounded Overbond公司 不

    A Canadian startup seeks to shed light on bond issuance加拿...

  • Linux bonding介绍

    网卡bond是通过把多个物理网卡绑定为一个逻辑网卡,实现本地网卡的冗余,带宽扩容和负载均衡。bonding技术的最...

  • 网卡绑定模式

    网卡绑定:目前网卡绑定有7种模式:bond0, bond1, bond2, bond3, bond4, bond5...

  • Linux网卡bond

    网卡bond的模式 网卡绑定mode共有七种(0~6) bond0、bond1、bond2、bond3、bond4...

  • 网卡绑定学习笔记

    网卡绑定mode共有七种(0~6) bond0、bond1、bond2、bond3、bond4、bond5、bon...

  • GCC AIMD细节

    1、增加带宽 增加带宽的原理是在当前带宽的基础上缓慢增加少量带宽,分为加性增和乘性增,具体见下。增加带宽的上限是,...

  • linux绑定bond的七种模式

    目前网卡绑定mode共有七种(0~6)bond0、bond1、bond2、bond3、bond4、bond5、bo...

  • [CFAL2]固收3

    Bond with option Callable Bond: 给予bond issuer赎回权, 利率较低时会行...

  • 网卡聚合bonding

    1. 简介 网卡bond是通过把多张网卡绑定为一个逻辑网卡,实现本地网卡的冗余,带宽扩容和负载均衡,在应用部署中是...

网友评论

      本文标题:bond加带宽

      本文链接:https://www.haomeiwen.com/subject/gksyvctx.html