当前位置: 首页 > news >正文

门头沟手机网站建设怎么做网页中不显示项目符号

门头沟手机网站建设,怎么做网页中不显示项目符号,杭州app网站设计,网页设计师多少钱一个月网卡的7种bond模式 一、bond模式 Mode0(balance-rr) 表示负载分担round-robin#xff0c;和交换机的聚合强制不协商的方式配合 Mode1(active-backup) 表示主备模式#xff0c;只有一块网卡是active,另外一块是备的standby#xff0c;这时如果交换机配的是捆绑#xff0c…网卡的7种bond模式 一、bond模式 Mode0(balance-rr) 表示负载分担round-robin和交换机的聚合强制不协商的方式配合 Mode1(active-backup) 表示主备模式只有一块网卡是active,另外一块是备的standby这时如果交换机配的是捆绑将不能正常工作因为交换机往两块网卡发包有一半包是丢弃的 Mode2(balance-xor) 表示XOR Hash负载分担和交换机的聚合强制不协商方式配合。需要xmit_hash_policy Mode3(broadcast) 表示所有包从所有interface发出这个不均衡只有冗余机制…和交换机的聚合强制不协商方式配合 Mode4(802.3ad) 表示支持802.3ad协议和交换机的聚合LACP方式配合需要xmit_hash_policy Mode5(balance-tlb) 是根据每个slave的负载情况选择slave进行发送接收时使用当前轮到的slave Mode6(balance-alb) 在5的tlb基础上增加了rlb 模式策略特点负载均衡交换机配置bond0balance-rrRound-robin policy 平衡轮询策略依次传输即第一次包走eth0,下一个包走eth1…一直循环下去直到最后一个传输完毕是静态聚合bond1(active-backup)Active-backup policy 主-备份策略只有一个端口处于活动状态当一个宕掉后另一个马上状态由备变为主mac地址唯一否否bond2Banlance-xorXOR policy 平衡策略基于指定的HASH策略传输数据包是静态聚合bond3broadcastbroadcast 广播策略每个slave接口上传输每个数据包否静态聚合bond4802.3adIEEE 802.3ad Dynamic link aggregation (IEEE 802.3ad 动态链接聚合)创建一个聚合组他们共享相同的速率和双工设定根据802.3ad规范将多个slave工作在同一个激活的聚合体下是支持IEEE 802.3ad动态聚合bond5balance-tlbAdaptive transmit load balancing 适配器传输负载均衡根据每个slave的负责情况选择salve进行发送接收时使用当前轮到的slave是否bond6balance-albAdaptive load balancing 适配器适应性负载均衡先把eth0流量占满再占eth1…ethX。该模式包含了balance-tlb模式同时加上针对IPV4流量的接受负载均衡reveive load balance rlb是否 二、交换机设置 mode 1、5、6不需要交换机设置   mode 0、2、3需要交换机设置静态聚合mode 4需要交换机支持802.3ad 三、网卡配置文件 2个物理网口分别是eth0,eth1 绑定后的虚拟口是bond0 服务器IP是192.168.0.100 1修改eth0配置文件 vim /etc/sysconfig/network-scripts/ifcfg-eth0DEVICEeth0BOOTPROTOnoneMASTERbond0SLAVEyesONBOOTyes2修改eth1配置文件 vim /etc/sysconfig/network-scripts/ifcfg-eth1DEVICEeth1BOOTPROTOnoneMASTERbond0SLAVEyesONBOOTyes3修改bond0配置文件 vim /etc/sysconfig/network-scripts/ifcfg-bond0DEVICEbond0BOOTPROTOstaticIPADDR192.168.0.100NETMASK255.255.255.0ONBOOTyes4修改bonding配置文件 CentOS6追加写/etc/modprobe.d/dist.confCentOS7新建写/etc/modprobe.d/bonding.conf alias bond0 bonding options bond0 miimon100 mode65加载bonding模块 modprobe bonding确认模块是否加载成功 lsmod |grep bonding6重启网络 service network restart查看bond cat /proc/net/bonding/bond0四、设置多个bond 1多个bond口的模式设成相同 alias bond0 bonding alias bond1 bonding options bonding max_bonds2 miimon100 mode62不同的bond口mode设成不一样 alias bond0 bonding options bond0 miimon100 mode1 install bond1 /sbin/modprobe bonding -o bond1 miimon100 mode0 miimon监视网络链接的频度单位是毫秒我们设置的是100毫秒 max_bonds配置的bond口个数 modebond模式在一般的实际应用中0和1用的比较多 官方介绍 mode0 (Balance Round Robin) per packetmode1 (Active backup)mode2 (Balance XOR)mode3 (Broadcast)mode4 (802.3ad)mode5 (Balance TLB)mode6 (Balance ALB) Modes of bonding : RHEL bonding supports 7 possible “modes” for bonded interfaces. These modes determine the way in which traffic sent out of the bonded interface is actually dispersed over the real interfaces. Modes 0, 1, and 2 are by far the most commonly used among them. Mode 0 (balance-rr) This mode transmits packets in a sequential order from the first available slave through the last. If two real interfaces are slaves in the bond and two packets arrive destined out of the bonded interface the first will be transmitted on the first slave and the second frame will be transmitted on the second slave. The third packet will be sent on the first and so on. This provides load balancing and fault tolerance.Mode 1 (active-backup) Mode 1 places one of the interfaces into a backup state and will only make it active if the link is lost by the active interface. Only one slave in the bond is active at an instance of time. A different slave becomes active only when the active slave fails. This mode provides fault tolerance.Mode 2 (balance-xor) Transmits based on XOR formula. (Source MAC address is XOR’d with destination MAC address) modula slave count. This selects the same slave for each destination MAC address and provides load balancing and fault tolerance.Mode 3 (broadcast) The broadcast mode transmits everything on all slave interfaces. This mode is least used (only for a specific purpose) and provides only fault tolerance.Mode 4 (802.3ad) The 802.3ad mode is known as Dynamic Link Aggregation mode. It creates aggregation groups that share the same speed and duplex settings. This mode requires a switch that supports IEEE 802.3ad Dynamic link. Slave selection for outgoing traffic is done according to the transmit hash policy, which may be changed from the default simple XOR policy via the xmit_hash_policy option. Note that not all transmit policies may be 802.3ad compliant, particularly in regards to the packet mis-ordering requirements of section 43.2.4 of the 802.3ad standard. Differing peer implementations will have varying tolerances for noncompliance.Mode 5 (balance-tlb) This is called as Adaptive transmit load balancing. The outgoing traffic is distributed according to the current load and queue on each slave interface. Incoming traffic is received by the current slave.Mode 6 (balance-alb) This is Adaptive load balancing mode. This includes balance-tlb receive load balancing (rlb) for IPV4 traffic. The receive load balancing is achieved by ARP negotiation. The bonding driver intercepts the ARP Replies sent by the server on their way out and overwrites the src hw address with the unique hw address of one of the slaves in the bond such that different clients use different hw addresses for the server. 参考链接 https://www.cnblogs.com/lcword/p/5914089.html https://www.cloudibee.com/network-bonding-modes/
http://www.hkea.cn/news/14385801/

相关文章:

  • 昆山外贸公司网站建设流程徐汇网站建设推广
  • 喜欢做木工 网站优秀网页设计作品图片
  • wordpress小说网站模板下载地址做网站需要买ip地址吗
  • 怎么联系网站开发团队一级造价工程师报名网站
  • 建设一网站要多少钱如何自己设计图片
  • 网站选项卡代码郑州设计公司汇总
  • 虚拟机建设网站新网站怎么做才能可以在百度上搜索到
  • 建设网站用哪种语言免费文档模板下载
  • 佛山网站建设找千界青岛seo服务公司
  • 企业做网站得多少钱最新火车停运通知今天
  • 律师事务所手机网站人防pc网站开发计划书
  • 网站源代码编辑企业微信官网
  • 国外设计网站网站制作技巧
  • 网站公共模板是什么百度云与手机wordpress
  • 网站开发公司计划书互联网之光博览会预约
  • 网站建设兼容性aspcms网站地图
  • html写手机网站吗找印度人做网站
  • 个人公众号如何开通秦皇岛市做网站优化
  • 佛山有什么网站网站公告栏模板
  • 企业做网站的注意装饰工程施工组织设计
  • 湖南网站seo优化免费网站空间 asp.net
  • 什么网站建设策划方案 论文苏州专业高端网站建设公司哪家好
  • 外贸公司网站建设方案汕头建设吧百度贴吧
  • 张家港手机网站建设wordpress英文版下载
  • ssh课程网站开发西安网站开发费用
  • 简述四大行业的网站推广方式做汽车团购的网站建设
  • 网站制作公司小邓自己开发网站
  • 襄阳论坛网站建设广州天拓做网站吗
  • 南宁网站建设公司招聘网站技术有哪些
  • 免费建网站 手机网站网站建设用哪种语言